/* =====================
   Dashboard Styles
   ===================== */

.stat-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box {
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.status {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status.completed {
    background: rgba(209, 250, 229, 0.2);
    color: #86efac;
}

.status.in-progress {
    background: rgba(254, 243, 199, 0.2);
    color: #fcd34d;
}

.status.pending {
    background: rgba(254, 226, 226, 0.2);
    color: #fca5a5;
}

.chart-placeholder {
    margin-top: 1rem;
}
