/* Dashboard Styles */

.cursor-pointer {
    cursor: pointer;
}

.cursor-pointer:hover {
    background-color: #f5f5f5;
}

/* Weekly Reminders */
.weekly-reminders .day-column {
    min-width: 120px;
}

/* Targets Display */
.progress-bar.bg-success {
    background-color: #28a745 !important;
}

.progress-bar.bg-warning {
    background-color: #ffc107 !important;
}

.progress-bar.bg-danger {
    background-color: #dc3545 !important;
}

/* Subscription Alert */
.subscription-alert {
    border-left: 5px solid #dc3545;
}

/* Search Box */
.search-box {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Dashboard Cards */
.card-dashboard {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.card-dashboard:hover {
    transform: translateY(-5px);
}

.card-title h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Media Queries for responsive design */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}