/* Dashboard Card Styles */

.card .card-title.text-muted {
    font-size: 0.9rem;
    font-weight: 500;
}

.card h3.mb-0 {
    font-weight: 700;
}

.icon-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.icon-shape i {
    font-size: 1.5rem;
}

/* Specific for Employee Dashboard */
.timer-display {
    font-size: 1.5rem;
    font-family: monospace;
}

/* Charts */
.chart-container {
    position: relative;
    height: 300px;
    /* Default height */
}

/* Mobile Responsive Dashboard */
@media (max-width: 575.98px) {
    .card .card-title.text-muted {
        font-size: 0.8rem;
    }
    
    .card h3.mb-0 {
        font-size: 1.25rem;
    }
    
    .icon-shape {
        width: 40px;
        height: 40px;
    }
    
    .icon-shape i {
        font-size: 1.2rem;
    }
    
    .timer-display {
        font-size: 1.2rem;
    }
    
    .chart-container {
        height: 200px;
    }
}