/* Notification Container */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    pointer-events: none;
}

/* Notification */
.notification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    max-width: 400px;
}

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

.notification.hide {
    opacity: 0;
    transform: translateX(400px);
}

/* Notification Icon */
.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
}

/* Notification Message */
.notification-message {
    flex: 1;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

/* Close Button */
.notification-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.notification-close:hover {
    background: var(--hover-bg);
    color: var(--text);
}

/* Success Notification */
.notification-success {
    border-left: 4px solid #10b981;
}

.notification-success .notification-icon {
    background: #10b98120;
    color: #10b981;
}

/* Error Notification */
.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-error .notification-icon {
    background: #ef444420;
    color: #ef4444;
}

/* Warning Notification */
.notification-warning {
    border-left: 4px solid #f59e0b;
}

.notification-warning .notification-icon {
    background: #f59e0b20;
    color: #f59e0b;
}

/* Info Notification */
.notification-info {
    border-left: 4px solid #3b82f6;
}

.notification-info .notification-icon {
    background: #3b82f620;
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification {
        min-width: auto;
        max-width: none;
    }
}
