/* ==================== TOAST NOTIFICATIONS ==================== */

.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.notification {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 400px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    border-left: 4px solid #5C9D7F;
}

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

.notification-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #1a1a1a;
    font-weight: 500;
}

.notification-close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #666;
}

/* Success notification */
.notification-success {
    border-left-color: #5C9D7F;
}

.notification-success .notification-icon {
    background: linear-gradient(135deg, #5C9D7F 0%, #4a8c6f 100%);
    color: white;
}

/* Error notification */
.notification-error {
    border-left-color: #e74c3c;
}

.notification-error .notification-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

/* Info notification */
.notification-info {
    border-left-color: #3498db;
}

.notification-info .notification-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

/* Warning notification */
.notification-warning {
    border-left-color: #f39c12;
}

.notification-warning .notification-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

/* Hover effect */
.notification:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .notifications-container {
        top: 10px;
        right: 10px;
        left: 10px;
        align-items: stretch;
    }
    
    .notification {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}
