/* 구/신사양 대시보드 커스텀 스타일 */
body { font-family: 'Noto Sans KR', sans-serif; }

.kpi-card {
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.item-card {
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.nav-menu {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  color: #7f8c8d;
  white-space: nowrap;
}
.nav-menu:hover { color: #1a3c5e; }
.nav-menu.active {
  color: #1a3c5e;
  border-bottom-color: #43b89c;
}

.gauge-bar {
  height: 10px;
  border-radius: 5px;
  transition: width 0.5s;
}

.tag { display: inline-block; padding: 2px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.tag-red { background: #fdecea; color: #e74c3c; }
.tag-orange { background: #fef5e7; color: #e67e22; }
.tag-green { background: #eafaf1; color: #27ae60; }
.tag-blue { background: #ebf5fb; color: #3498db; }
.tag-gray { background: #f0f0f0; color: #95a5a6; }
.tag-mint { background: #e8f8f5; color: #2d8e78; }

.badge { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }

.schedule-tag {
  padding: 5px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  word-break: keep-all;
}

.info-row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}
.info-row .label { color: #7f8c8d; width: 130px; flex-shrink: 0; }
.info-row .value { color: #2c3e50; }
.info-row .value.bold { font-weight: 700; }

/* 반응형 */
@media (max-width: 768px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .detail-grid { flex-direction: column !important; }
}
