/* Clinical Data Dashboard Styles */
body {
    background: #f4f6fa;
}

.dashboard-header {
    font-size: 2.5rem;
    font-weight: 800;
    color: #22223b;
    letter-spacing: -1px;
}

.filter-bar {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(34,34,59,0.08);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tile {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(34,34,59,0.07);
    padding: 1.5rem 1rem;
    transition: box-shadow 0.15s;
    min-width: 0;
    text-align: center;
}

.tile:hover {
    box-shadow: 0 4px 16px rgba(34,34,59,0.14);
}

.tile-label {
    font-size: 1rem;
    color: #4a4e69;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tile-value {
    font-size: 2rem;
    font-weight: bold;
    color: #22223b;
}

.tile .sub-value {
    font-size: 1.1rem;
    color: #9a8c98;
    font-weight: 600;
    margin-top: 0.4rem;
}

.chart-container {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(34,34,59,0.09);
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
}

.chart-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #22223b;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .dashboard-header { 
        font-size: 2rem; 
    }
    .tile-value { 
        font-size: 1.5rem; 
    }
    .chart-container { 
        padding: 1rem; 
    }
    .tiles-grid { 
        gap: 0.7rem; 
    }
}
