/* Reminder Bell Button */
.reminder-menu-container {
    position: relative;
}

.reminder-bell-btn {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: 1px solid #e5e5e5;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 10px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.reminder-bell-btn.active {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #d97706;
}

.reminder-bell-btn:hover {
    background: #f3f4f6;
}

.reminder-bell-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #f59e0b;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Reminder Modal (matches stash-modal pattern) */
.reminder-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 500px;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(245, 158, 11, 0.15);
    animation: slideUp 0.4s ease;
}

.reminder-modal-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(245, 158, 11, 0.04);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.reminder-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #d97706;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reminder-modal-header h3 svg {
    opacity: 0.8;
}

.reminder-modal-content {
    padding: 12px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reminder-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: var(--border-radius);
    background: #ffffff;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.reminder-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: #d1d5db;
}

.reminder-icon {
    flex-shrink: 0;
    font-size: 18px;
}

.reminder-item-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reminder-task {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.reminder-time {
    font-size: 13px;
    color: #9ca3af;
}

.reminder-dismiss {
    flex-shrink: 0;
    background: rgba(239, 68, 68, 0.08);
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

.reminder-dismiss:hover {
    background: rgba(239, 68, 68, 0.15);
}

.reminder-dismiss:active {
    transform: scale(0.9);
}

.reminder-empty {
    text-align: center;
    padding: 48px 24px;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.reminder-empty svg {
    color: rgba(245, 158, 11, 0.4);
    margin-bottom: 8px;
}

.reminder-empty p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #4b5563;
}

.reminder-empty small {
    color: #9ca3af;
    font-size: 13px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .reminder-modal {
        max-width: 95%;
        max-height: 80vh;
    }

    .reminder-bell-count {
        width: 20px;
        height: 20px;
        font-size: 11px;
        font-weight: 800;
        top: -6px;
        right: -6px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        pointer-events: none;
    }
}
