.dashboard-container {
  padding: 16px;
  padding-top: 0px; /* header */
  padding-bottom: 80px; /* footer */
}

.dashboard-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0px;
}

.dashboard-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

/* =========================
SECTION
========================= */

.dashboard-section {
  margin-top: 20px;
}

.dashboard-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* =========================
CARDS GRID
========================= */

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dashboard-card {
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
}

.dashboard-card-label {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

.dashboard-card-value {
  font-size: 24px;
  font-weight: 700;
}

/* =========================
SYSTEM HEALTH
========================= */

.dashboard-health-card {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
}

.dashboard-health-status {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dashboard-health-status.green {
  color: #16a34a;
}

.dashboard-health-status.yellow {
  color: #f59e0b;
}

.dashboard-health-status.red {
  color: #dc2626;
}

.dashboard-health-message {
  font-size: 13px;
  color: #666;
  margin-bottom: 14px;
}

.dashboard-health-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.dashboard-health-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-health-row span:last-child {
  font-weight: 600;
}

.dashboard-health-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-health-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-health-dot.green {
  background: #16a34a;
}

.dashboard-health-dot.yellow {
  background: #f59e0b;
}

.dashboard-health-dot.red {
  background: #dc2626;
}

.dashboard-health-button-wrapper {
  text-align: center;
  margin-top: 14px;
}

.dashboard-health-btn {
  border: none;
  background: #2563eb;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

/* ============================= */
/* DASHBOARD SYSTEM HEALTH */
/* ============================= */

.dashboard-health-box {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
}

.dashboard-health-status {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.dashboard-health-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.dashboard-health-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.dashboard-health-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.dashboard-dot-green {
  background: #16a34a;
}

.dashboard-dot-yellow {
  background: #f59e0b;
}

.dashboard-dot-red {
  background: #dc2626;
}

.dashboard-health-btn {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
}

/* ============================= */
/* UPCOMING WORK */
/* ============================= */

.dashboard-capacity {
  margin-top: 12px;
}

.dashboard-capacity-bar {
  height: 10px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

#dashCapacityFill {
  height: 100%;
  background: #2563eb;
  width: 0%;
}

.dashboard-capacity-text {
  font-size: 13px;
  margin-top: 6px;
}

.dashboard-capacity-row {
  margin-top: 12px;
}

.dashboard-capacity-label {
  font-size: 13px;
  margin-bottom: 4px;
}

.dashboard-capacity-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

.dashboard-capacity-bar div {
  height: 100%;
  width: 0%;
  border-radius: 6px;
}

.dashboard-capacity-text {
  font-size: 12px;
  margin-top: 3px;
  color: #666;
}

.dashboard-tech-next {
  text-align: center;
}

.dashboard-tech-next div:first-child {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.dashboard-tech-next div:nth-child(2) {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.dashboard-tech-line1 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

.dashboard-tech-line2 {
  font-size: 14px;
  color: #2563eb;
  margin-bottom: 2px;
}

.dashboard-tech-line3 {
  font-size: 13px;
  color: #555;
  margin-bottom: 2px;
}

.dashboard-tech-line4 {
  font-size: 13px;
  color: #777;
}

.dashboard-tech-empty {
  font-size: 14px;
  color: #666;
  text-align: center;
  padding: 10px 0;
}
