.notfound-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.notfound-icon {
    font-size: 8rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.notfound-title {
    font-size: 3rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 1rem;
}

.notfound-message {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
}

.notfound-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.notfound-buttons .btn {
    min-width: 150px;
}

@media (max-width: 768px) {
    .notfound-icon {
        font-size: 5rem;
    }

    .notfound-title {
        font-size: 2rem;
    }

    .notfound-message {
        font-size: 1rem;
    }
}
