/* 跟进提醒弹窗样式 */
.reminder-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 350px;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: slideInRight 0.3s ease-out;
}

.reminder-content {
    padding: 0;
}

.reminder-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.reminder-icon {
    font-size: 1.2rem;
}

.reminder-title {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
}

.reminder-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s;
}

.reminder-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.reminder-body {
    padding: 1rem;
}

.reminder-store-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.reminder-description {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.reminder-time {
    color: var(--text-tertiary);
    font-size: 0.75rem;
}

.reminder-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem 1rem 1rem;
}

.reminder-actions .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.5rem;
}

@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;
    }
}

.reminder-notification.closing {
    animation: slideOutRight 0.3s ease-in forwards;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .reminder-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}