/* Modern, Premium Notification Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.notification {
    pointer-events: auto;
    min-width: 320px;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
                0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Poppins', sans-serif;
}

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

.notification-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.notification-message {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    word-break: break-word;
    white-space: pre-wrap;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: color 0.3s;
}

.notification-close:hover {
    color: #333;
}

/* Success State */
.notification-success .notification-icon {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}
.notification-success {
    border-left: 5px solid #28a745;
}

/* Error State */
.notification-error .notification-icon {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}
.notification-error {
    border-left: 5px solid #dc3545;
}

/* Info State */
.notification-info .notification-icon {
    background: rgba(154, 228, 11, 0.15);
    color: #537A11;
}
.notification-info {
    border-left: 5px solid #537A11;
}

/* Animation */
@keyframes slideOut {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}
