/* Reminders Section Styling */
.reminders-section {
    margin-top: 2rem;
}

.reminders-section h5 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reminders-section h5 i {
    color: #ffc107;
}

/* Reminders List */
#reminders-list {
    max-height: 300px;
    overflow-y: auto;
}

.reminder-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.reminder-item:hover {
    border-color: #0d6efd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.reminder-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.reminder-info {
    flex: 1;
}

.reminder-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
    margin: 0 0 0.5rem 0;
}

.reminder-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.reminder-date {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.reminder-description {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.reminder-actions {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.reminder-actions .btn {
    padding: 0.25rem 0.5rem;
    border: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.reminder-actions .btn:hover {
    transform: translateY(-1px);
}

/* Add Reminder Form */
#addReminderForm {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: none;
}

#addReminderForm .form-control {
    font-size: 0.9rem;
}

#addReminderForm .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

/* Add Reminder Button */
#addReminderBtn {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    border: none;
    color: white;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#addReminderBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

/* Empty State */
.reminders-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: #6c757d;
}

.reminders-empty i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Status Colors */
.bg-warning {
    background-color: #ffc107 !important;
}

.bg-success {
    background-color: #198754 !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .reminder-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .reminder-actions {
        align-self: flex-end;
    }
    
    .reminder-meta {
        flex-wrap: wrap;
    }
}

/* Animation for new reminders */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reminder-item.new {
    animation: slideIn 0.3s ease-out;
}
