/* Dashboard Specific Styles */

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

/* Stat card color variations */
.stat-card:nth-child(1) .stat-value {
    color: #2271b1;
}
.stat-card:nth-child(2) .stat-value {
    color: #00a32a;
}
.stat-card:nth-child(3) .stat-value {
    color: #dba617;
}
.stat-card:nth-child(4) .stat-value {
    color: #8c44cb;
}

.building-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    padding-top: 10px;
}

.building-card {
    padding: 12px;
    background: #f6f7f7;
    border-radius: 4px;
    border-left: 3px solid;
}

.building-card-title {
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 4px;
}

.building-card-info {
    font-size: 12px;
    color: #646970;
}
