/* 通知弹窗样式 */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    width: 350px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

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

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

.notification-info {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
}

.notification-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.notification-close:hover {
    color: white;
}

.notification-success .notification-icon {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.notification-warning .notification-icon {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.notification-error .notification-icon {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
}

.notification-info .notification-icon {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
}

@media (max-width: 768px) {
    .notification {
        width: 300px;
        right: 10px;
    }
}