/* Error Pages Styles */
.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem 1rem;
}

.error-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    background: var(--background-secondary, #f8f9fa);
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
}

.error-icon {
    margin-bottom: 1.5rem;
}

.error-svg {
    width: 80px;
    height: 80px;
    color: var(--primary-color, #007bff);
    stroke-width: 1.5;
}

.error-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary, #333);
    margin: 0 0 0.5rem;
    line-height: 1;
}

.error-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary, #666);
    margin: 0 0 1.5rem;
}

.error-message {
    margin-bottom: 2rem;
}

.error-message p {
    font-size: 1.1rem;
    color: var(--text-secondary, #666);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.error-reasons {
    background: var(--background-light, #fff);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-color, #007bff);
}

.error-reasons h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #333);
    margin: 0 0 1rem;
}

.error-reasons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-reasons li {
    padding: 0.5rem 0;
    color: var(--text-secondary, #666);
    font-size: 0.95rem;
    line-height: 1.4;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.error-help {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color, #e9ecef);
}

.error-help p {
    font-size: 0.9rem;
    color: var(--text-muted, #868e96);
    margin: 0;
}

.error-help a {
    color: var(--primary-color, #007bff);
    text-decoration: none;
    font-weight: 500;
}

.error-help a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (width <= 768px) {
    .error-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .error-title {
        font-size: 3rem;
    }
    
    .error-subtitle {
        font-size: 1.3rem;
    }
    
    .error-svg {
        width: 60px;
        height: 60px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn-primary,
    .error-actions .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (width <= 480px) {
    .error-container {
        padding: 1rem 0.5rem;
        min-height: 50vh;
    }
    
    .error-content {
        padding: 1.5rem 1rem;
    }
    
    .error-title {
        font-size: 2.5rem;
    }
    
    .error-reasons {
        padding: 1rem;
    }
}