/* 消息通知Toast样式 */
.notification-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.notification-toast {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 15px;
    animation: slideInRight 0.3s ease;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    cursor: pointer;
}

.notification-toast:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-xl);
}

.notification-toast h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.notification-toast p {
    margin: 0;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.notification-toast .time {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 5px;
    display: block;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-toast.slide-out {
    animation: slideOutRight 0.3s ease forwards;
}