/* Windows 11 Notification Toast Styles */

.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.notification-toast {
    width: 360px;
    background: var(--window-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 16px;
    margin-bottom: 12px;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.notification-toast:hover {
    transform: translateX(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.notification-toast.slide-out {
    animation: slideOutRight 0.3s cubic-bezier(0.6, 0, 0.8, 0.2) forwards;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.notification-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
}

.notification-body {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 12px;
}

.notification-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.notification-time {
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.6;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .notification-container {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .notification-toast {
        width: auto;
    }
}
