.error-container {
    /*max-width: 600px;*/
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1;
}
.error-icon {
    font-size: 6rem;
    color: #6c757d;
    margin-bottom: 20px;
}
.error-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #495057;
}
.error-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}
.btn-home {
    background-color: #0d6efd;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    margin-right: 10px;
    transition: all 0.3s;
}
.btn-home:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}
.btn-back {
    background-color: #6c757d;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s;
}
.btn-back:hover {
    background-color: #5c636a;
    transform: translateY(-2px);
}
.search-box {
    margin-top: 30px;
}
.suggestions {
    margin-top: 30px;
    text-align: left;
}
.suggestion-item {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}
.suggestion-item:last-child {
    border-bottom: none;
}
.footer {
    margin-top: 40px;
    color: #6c757d;
    font-size: 0.9rem;
}
.animate-bounce {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
