/* Reminder Button & Modal Styles */
.footer-reminder-btn {
    background: #ffffff1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    margin: 10px 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-reminder-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    transform: translateY(-1px);
}

.reminder-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reminder-modal-backdrop.visible {
    opacity: 1;
}

.reminder-modal-content {
    background: var(--color-white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.reminder-modal-backdrop.visible .reminder-modal-content {
    transform: scale(1);
}

.reminder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.reminder-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0;
    line-height: 1;
}

.close-btn:hover {
    color: var(--text-color);
}

.reminder-options {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.reminder-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    text-decoration: none;
    color: white;
}

.reminder-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.reminder-btn.google {
    background-color: #4285F4;
}

.reminder-btn.apple {
    background-color: #333;
}

.reminder-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

/* Dark mode adjustments if needed are handled by var(--card-bg) etc variables already present in main css */