/* ===== Global Styles for OPSCI Viewers ===== */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f8f9fb;
  color: #222;
  margin: 40px;
  line-height: 1.6;
}

/* ----- Page Titles ----- */
h1 {
  color: #004ba0;
  font-weight: 600;
  font-size: 1.9em;
  margin-bottom: 8px;
}

h2, h3 {
  color: #004ba0;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* ----- Introductory / Explanatory Paragraphs ----- */
p {
  max-width: 900px;
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}

/* ----- Viewer Header Block (used by Employer Viewer) ----- */
header {
  background-color: #004ba0;
  color: white;
  padding: 18px 30px;
  border-radius: 8px;
  margin-bottom: 25px;
}

header h1 {
  color: white;
  margin: 0 0 8px 0;
  font-size: 1.8em;
}

/* ----- Controls Area (Dropdowns, Labels) ----- */
.controls,
#controls {
  margin-bottom: 25px;
}

label {
  font-weight: 600;
  margin-right: 10px;
}

select {
  padding: 6px 8px;
  margin-right: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: white;
  font-size: 14px;
}

/* ----- Section Containers (Employer Viewer) ----- */
section {
  background: white;
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* ----- Metric Rows (Employer Viewer) ----- */
.metric {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}

.metric span:first-child {
  font-weight: 500;
}

/* ----- Tables (Employer Viewer) ----- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  text-align: left;
  padding: 8px;
  font-size: 14px;
}

th {
  background: #1976d2;
  color: white;
}

/* ----- Chart Container (Payband Viewer) ----- */
#chart {
  margin-top: 25px;
}

/* ----- No Data Message ----- */
#chart p {
  color: #777;
  font-style: italic;
}

/* ----- Responsive Adjustments ----- */
@media (max-width: 768px) {
  body {
    margin: 20px;
  }

  h1 {
    font-size: 1.5em;
  }

  section {
    padding: 14px 16px;
  }

  select {
    display: block;
    margin-bottom: 10px;
  }
}
