/* ===== GENERAL UI COMPONENT STYLES ===== */

/* Stat Card Hover animation */
.stat-card {
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Filter & Search Bar Cards */
.filter-panel {
    border-radius: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Chart Canvas container */
.chart-container {
    position: relative;
    width: 100%;
}
