.error-boundary-container {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #fff8f8;
    border: 1px solid #ffcdd2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.error-boundary {
    display: flex;
    flex-direction: column;
}

.error-boundary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ffcdd2;
}

.error-boundary-header h3 {
    color: #d32f2f;
    margin: 0;
}

.error-message {
    font-weight: 500;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.error-details {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    overflow-x: auto;
}

.error-details pre {
    white-space: pre-wrap;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.error-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Animation for error appearance */
@keyframes errorFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.error-boundary-container {
    animation: errorFadeIn 0.3s ease-out;
}
