/* --------- Page background --------- */
body {
  background-color: #708090;
  margin: 0;
  padding: 0;
}

/* --------- Main dashboard container --------- */
.dashboard-container {
  width: 1400px;
  height: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #010103;
  border: 1px solid #cccccc;
  border-radius: 10px;
}

/* --------- Typography --------- */
h1 {
  font-family: 'Poppins', Arial, sans-serif;
  color: #ffffff;
  font-size: 28px;
  margin: 15px;
}

p {
  font-family: 'Poppins', Arial, sans-serif;
  color: #ffffff;
  font-size: 14px;
  margin: 15px;
  text-align: justify;
}

h2 {
  margin-bottom: 0px;
  margin-top: 10px;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}

h3 {
  font-size: 16px;
  line-height: 34px;
  padding-left: 7px;
  font-family: 'Poppins', Arial, sans-serif;
  color: #0dcaf0;
}

/* --------- KPI / output boxes --------- */
.Output {
  width: 180px;
  height: 38px;
  background-color: rgba(204, 204, 204, 0.1);
  border: 1px solid rgba(204, 204, 204, 0.3);
  border-radius: 3px;
  margin-bottom: 10px;
  padding-left: 7px;
  padding-top: 4px;
  color: #0dcaf0;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 14px;
}

/* --------- Radio / form-check base --------- */
.form-check {
  margin: 0;
  padding-left: 0;
}

/* --------- View selector (Overview / Service / Program / Quality) --------- */
.view-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.view-selector .form-check {
  margin: 0;
}

/* Buttons used as view tabs */
.view-btn {
  padding: 4px 10px;
  font-size: 13px;
  line-height: 1.2;
  height: auto;
  white-space: nowrap;
  border-radius: 3px;
  font-family: 'Poppins', Arial, sans-serif;
}

/* --------- About button --------- */
.about-btn {
  height: 32px;
  padding: 4px 12px;
  font-family: 'Poppins', Arial, sans-serif;
  border-radius: 3px;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid transparent;
}

.about-btn:active,
.about-btn:focus {
  background-color: var(--bs-info);
}

.about-btn:hover {
  background-color: rgba(13, 202, 240, 0.9);
}

/* --------- Dropdowns (dark mode) --------- */
.customDropdown {
  font-size: 14px;
  font-family: 'Poppins', Arial, sans-serif;
  padding-left: 1px;
}

.customDropdown .Select-control {
  width: 100%;
  height: 38px;
  background-color: transparent;
  border: 1px solid #676768;
  border-radius: 3px;
  color: #0dcaf0 !important;
}

.customDropdown .Select-value-label,
.customDropdown .Select-placeholder {
  color: #0dcaf0 !important;
}

.customDropdown .Select-arrow {
  border-color: #cccccc transparent transparent;
}

.customDropdown.is-open .Select-arrow {
  border-color: transparent transparent #cccccc;
}

.customDropdown .Select-menu-outer {
  margin-top: 5px;
  border-radius: 3px;
  background-color: #010103;
  border: 1px solid #676768;
  color: #f8f9fa;
}

/* --------- Plotly modebar --------- */
.modebar {
  display: none !important;
}
