/* Error and Empty State Styles */

.error-page,
.no-results,
.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    min-height: 50vh;
}

.error-page h1,
.no-results h2,
.not-found h1 {
    font-family: "Unbounded", sans-serif;
    font-size: 2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.error-page p,
.no-results p,
.not-found p {
    font-family: "Eudoxus Sans", sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Search Form in Error Pages */
.error-page .search-form,
.no-results .search-form,
.not-found .search-form {
    width: 100%;
    max-width: 400px;
    margin-bottom: 32px;
    display: flex;
    gap: 12px;
}

.error-page .search-field,
.no-results .search-field,
.not-found .search-field {
    flex: 1;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: "Eudoxus Sans", sans-serif;
    transition: all 0.3s ease;
}

.error-page .search-field:focus,
.no-results .search-field:focus,
.not-found .search-field:focus {
    border-color: #ffffff;
    outline: none;
}

.error-page .search-submit,
.no-results .search-submit,
.not-found .search-submit {
    padding: 12px 24px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-family: "Unbounded", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-page .search-submit:hover,
.no-results .search-submit:hover,
.not-found .search-submit:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Home Button */
.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 32px;
    font-family: "Unbounded", sans-serif;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Responsive */
@media (min-width: 768px) {
    .error-page,
    .no-results,
    .not-found {
        padding: 80px 0;
    }

    .error-page h1,
    .no-results h2,
    .not-found h1 {
        font-size: 3rem;
    }

    .error-page p,
    .no-results p,
    .not-found p {
        font-size: 1.125rem;
    }
}

