/* Error Notification Styles */
.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #FFD2D2;
    color: #D8000C;
    border: 1px solid #FFBABA;
    border-radius: 8px;
    padding: 16px;
    width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-family: 'Arial', sans-serif;
}

.error-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.error-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.error-notification-title {
    font-weight: bold;
    font-size: 16px;
}

.error-notification-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #D8000C;
    padding: 0;
    line-height: 1;
}

.error-notification-body {
    font-size: 14px;
    line-height: 1.4;
}

.error-notification-footer {
    margin-top: 12px;
    text-align: right;
}

.error-notification-details-btn {
    background: none;
    border: none;
    color: #007BFF;
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
}

.error-notification-details {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #F8F8F8;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 12px;
    color: #333;
    max-height: 100px;
    overflow-y: auto;
    word-wrap: break-word;
}
