:root {
    --magenta: #E6007E;
    --blue: #0066CC;
    --dark: #111827;
    --light: #F3F4F6;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --gradient: linear-gradient(135deg, var(--magenta), var(--blue));
}

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 350px;
    max-width: 90%;
}

.notification {
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
    display: flex;
    align-items: center;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: slide-in 0.4s forwards;
}

.notification.hide {
    animation: slide-out 0.4s forwards;
}

@keyframes slide-in {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-out {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.notification-icon {
    margin-right: 15px;
    font-size: 20px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
}

.notification-message {
    font-size: 14px;
    opacity: 0.9;
}

.notification-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
    margin-left: 10px;
}

.notification-close:hover {
    opacity: 1;
}

/* Notification types */
.notification-success {
    background: var(--success);
    border-left: 5px solid #059669;
}

.notification-error {
    background: var(--error);
    border-left: 5px solid #dc2626;
}

.notification-warning {
    background: var(--warning);
    border-left: 5px solid #d97706;
}

.notification-info {
    background: var(--info);
    border-left: 5px solid #2563eb;
}

.notification-primary {
    background: var(--magenta);
    border-left: 5px solid #9d174d;
}

/* Responsive */
@media (max-width: 576px) {
    .notification-container {
        width: calc(100% - 30px);
        right: 15px;
    }
    
    .notification {
        padding: 12px 15px;
    }
    
    .notification-title {
        font-size: 14px;
    }
    
    .notification-message {
        font-size: 12px;
    }
}