/* 대시보드 화면 전용 스타일 */
.dashboard-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.dashboard-card {
    flex: 1 1 380px;
    background: #fff;
    border: 1px solid #c9ced3;
    border-radius: 7px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    padding: 18px 20px;
}

.dashboard-card-title {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    color: #304a61;
}

.bar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #607b99;
}

.bar-label {
    flex: 0 0 90px;
}

.bar-track {
    flex: 1 1 auto;
    height: 14px;
    background: #eef1f4;
    border-radius: 7px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #4a8bc6;
    border-radius: 7px;
}

.bar-fill-alt {
    background: #24bfc2;
}

.bar-count {
    flex: 0 0 60px;
    text-align: right;
    font-weight: 700;
    color: #405b70;
}
