/* Notification System */
.notification-container {
    position: fixed;
    top: 116px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #249333;
    backdrop-filter: blur(27px);
    border-radius: 12px;
    padding: 0 11px 0 8px;
    height: 48px;
    max-width: 364px;
    min-width: 290px;
    pointer-events: auto;
    animation: slideInRight 0.3s ease-out;
    /* transform: translateX(100%); TODO */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.notification.show {
    transform: translateX(0);
}

.notification.hide {
    animation: slideOutRight 0.3s ease-in forwards;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    color:#f4f4f4;  
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.notification-message {
    font-family: 'Montserrat-Arabic', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 12.25px;
    color: #ffffff;
    margin: 0;
    white-space: wrap;
    line-height: 1rem;
    overflow: hidden;
}

.notification-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    transition: opacity 0.2s ease;
    cursor: pointer;
    margin-left: 1rem;
}

.notification-close:hover {
    opacity: 0.8;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
