/* Error Boundary Styles */
.error-boundary-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
}

.error-boundary-content {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.error-boundary-content h2 {
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.error-message {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    word-break: break-word;
    max-height: 150px;
    overflow-y: auto;
}

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

.error-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.error-actions .btn svg {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .error-boundary-content {
        padding: 2rem;
    }

    .error-boundary-content h2 {
        font-size: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
