/* ==========================================================
   RESET GLOBAL
   ========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================================
   VARIÁVEIS
   ========================================================== */
:root {
  --bg: #EDEBEE;
  --brand: #2A3852;
  --primary: #2957AC;
  --primary-hover: #1F2C44;
  --border: #cbcaca;
  --white: #FFFFFF;
}

/* ==========================================================
   BASE DO SITE
   ========================================================== */
body {
  background-color: var(--bg);
  font-family: "Inter", sans-serif;
}

/* ==========================================================
   NAVBAR (TOPO)
   ========================================================== */
.navbar {
  width: 100%;
  background-color: var(--brand);
  padding: 12px 24px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo img {
  height: 25px;
  width: auto;
  display: block;
}

/* menu desktop (direita) */
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 0;
}

.login-logo {
  display: block;
  margin: 0 auto 16px auto;
  width: 150px;
  height: auto;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.table-scroll {
    border: 1px solid #e5e7eb;
    border-top: 0;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}
.report-table tbody tr.day-divider td {
    background: #f4f7fb !important;

    color: #475569;

    font-size: 14px;
    font-weight: 600;

    text-align: center;

    padding: 10px 12px;

    border-top: 1px solid #dbe4ee;
    border-bottom: 1px solid #dbe4ee;
}

.report-table thead th {
  background: #f6f5f6;
  color: var(--brand);

  font-weight: 800;
  font-size: 14px;

  padding: 12px 14px;

  border-bottom: 1px solid #e7e7e7;

  text-align: center;
}

.report-table tbody td {
  background: #fff;

  padding: 12px 14px;

  font-size: 14px;
  font-weight: 700;

  color: #1d1d1d;

  border-bottom: 1px solid #efefef;

  text-align: center;
}

.report-table tbody tr:last-child td {
  border-bottom: 0;
}

.report-table tbody tr:hover td {
  background: #fafafa;
}

/* metade metade */
.report-table th,
.report-table td {
  width: 50%;
}

/* badge */
.rpm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 46px;
  height: 28px;

  padding: 0 10px;

  border-radius: 999px;

  font-weight: 800;
  font-size: 13px;
}

.report-table thead th {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  text-align: center;
}

.report-table tbody tr:nth-child(even) td {
  background: #fafafa;
}

.report-table tbody td {
  font-weight: 600;
  color: #333;
}

.rpm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
}

/* verde */
.rpm-badge.table-success {
  background: #e8f5ec;
  color: #24733d;
}

/* amarelo */
.rpm-badge.table-warning {
  background: #fff4d1;
  color: #876300;
}

/* vermelho */
.rpm-badge.table-danger {
  background: #fbe4e4;
  color: #9a2020;
}

/* ==========================================================
   BOTÕES DA NAVBAR
   ========================================================== */

button.icon-text {
  background: none;
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}


button.icon-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;

  text-decoration: none;
  color: inherit;

  background-color: var(--primary);
}

button.icon-text:hover {
  background-color: var(--primary-hover);
}

.icon-text,
.icon-text-selected {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;

  text-decoration: none;
  color: inherit;
}

.icon-text {
  background-color: var(--primary);
}

.icon-text-selected {
  background-color: #727272;
}

.icon-text:hover {
  background-color: var(--primary-hover);
}

.icon {
  width: 20px;
}


.text-button {
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  text-decoration: none;

  background: none;
  border: 0;
  padding: 0;

  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================
   CONTEÚDO DA PÁGINA
   ========================================================== */
.page {
  padding: 24px;
}

.title1 {
  font-weight: 900;
  font-size: 24px;
  color: var(--brand);

  text-align: center;
  margin-bottom: 20px;
}

/* ==========================================================
   MENU MOBILE (HAMBÚRGUER)
   ========================================================== */
.nav-toggle {
  display: none;
}

.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  background: rgba(255, 255, 255, 0.08);
  margin-left: auto;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}

/* ==========================================================
   RESPONSIVO GERAL (ATÉ 768px)
   ========================================================== */
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
    order: 3;
    margin-left: 0;
  }

  .icon-text,
  button.icon-text {
    width: 100%;
    justify-content: flex-start;
  }

  .navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    order: 2;
  }

  .navbar-logo img {
    height: 20px;
  }

  .navbar-content {
    display: none;

    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;

    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    padding: 12px;
    background: var(--brand);
    border-radius: 12px;
    z-index: 10;
    margin-top: 10px;

  }



  .nav-toggle:checked+.nav-hamburger+.navbar-logo+.navbar-content {
    display: flex;
  }
}

/* ==========================================================
   PÁGINA DE LOGIN
   ========================================================== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  width: 560px;
  max-width: 560px;
  background: var(--brand);
  border-radius: 12px;
  padding: 26px 22px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 100%;
  max-width: 360px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.login-title {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
}

.login-field {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;

  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid #000;
}

.login-field:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-hover);
}

.login-field input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-hover);
  background: transparent;
}

.login-field input::placeholder {
  color: var(--primary-hover);
  font-weight: 600;
  text-transform: lowercase;
}

.login-btn,
.login-btn2 {
  margin-top: 4px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 10px 12px;

  background: var(--primary);
  color: #fff;

  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;

  transition: transform 0.06s ease, background-color 0.15s ease;
}

.login-btn {
  width: 100%;
}

.login-btn2 {
  width: 50%;
}

.login-btn:hover,
.login-btn2:hover {
  background: var(--primary-hover);
}

.login-btn:active,
.login-btn2:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .login-page {
    padding: 16px;
  }

  .login-card {
    width: 92%;
    max-width: 560px;
  }
}

@media (max-width: 450px) {
  .login-card {
    width: 92%;
    max-width: 560px;
    padding: 24px 16px;
  }
}

/* ==========================================================
   MÁQUINAS EM OPERAÇÃO (GRID)
   ========================================================== */
.machines-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.machine-card {
  width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.machine-title {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--brand);

  padding: 7px 6px;
  border-bottom: 1px solid var(--border);
}

.machine-body {
  padding: 14px;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.machine-status,
.machine-rpm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.status-text,
.rpm-text {
  font-weight: 700;
  font-size: 15px;
  color: #16a34a;
}

.icon-svg {
  width: 20px;
  height: 20px;
  fill: #16a34a;
  display: block;
}

/* ==========================================================
   CONFIGURAÇÕES
   ========================================================== */
.settings-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.settings-card {
  width: 290px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;

  text-decoration: none;
  color: inherit;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.settings-card-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.settings-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--brand);
  text-align: center;
}

.settings-footer {
  margin-top: auto;
  display: flex;
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .settings-card {
    width: 100%;
    max-width: 420px;
  }
}

/* ==========================================================
   CONFIGURAR MÁQUINAS
   ========================================================== */
.machine-config-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.machine-config-card,
.machine-config-card2 {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  box-sizing: border-box;
}

/* Somente o segundo card */
.machine-config-card2 {
  height: 250px;
}


.machine-config-card2 {
  max-height: 250px;
}

.machine-config-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.machine-config-title {
  font-weight: 900;
  font-size: 18px;
  color: var(--brand);
  text-align: center;
}

.machine-config-subtitle {
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: rgba(42, 56, 82, 0.65);
}

.machine-config-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-weight: 700;
  font-size: 12px;
  color: rgba(42, 56, 82, 0.80);
}

.field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  outline: none;

  font-weight: 700;
  color: var(--brand);
  background: #fff;
}

.field input:focus {
  border-color: rgba(41, 87, 172, 0.55);
  box-shadow: 0 0 0 3px rgba(41, 87, 172, 0.18);
}

.machine-config-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.btn-primary {
  border: 0;
  cursor: pointer;

  font-weight: 700;
  font-size: 13px;

  padding: 10px 12px;
  border-radius: 10px;

  width: 100%;

  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-primary-small {
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;

  width: fit-content;
  max-width: 100%;
  white-space: nowrap;

  margin: 0 auto 20px auto;
  display: block;

  background: var(--primary);
  color: #fff;
}

@media (max-width: 350px) {
  .btn-primary-small {
    font-size: 12px;
  }
}

/* ==========================================================
   RELATÓRIO POR MÁQUINA
   ========================================================== */
.report-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

/* barra de filtros */
.filter-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.filter-left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;

  width: 100%;
}

.filter-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.filter-label {
  font-weight: 700;
  color: var(--brand);
}

.filter-control {
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0 10px;
  outline: none;

  font-weight: 700;
  color: var(--brand);
  background: #fff;
}

.filter-control:focus {
  border-color: rgba(41, 87, 172, 0.55);
  box-shadow: 0 0 0 3px rgba(41, 87, 172, 0.18);
}


.range-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.range-sep {
  color: rgba(42, 56, 82, 0.55);
  font-weight: 900;
  padding: 0 2px;
}

.filter-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;

  width: 100%;
}

.btn-green,
.btn-red {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;

  color: #fff;
}

.btn-green {
  background: #2e7d32;
}

.btn-red {
  background: #6a0f0f;
  text-align: center;
}

.btn-green:hover,
.btn-red:hover {
  filter: brightness(0.95);
}

/* KPI cards */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.kpi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;

  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.kpi-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-weight: 700;
  color: var(--brand);
  font-size: 14px;
}

.kpi-value {
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

.kpi-green {
  color: #2e7d32;
}

.kpi-red {
  color: #b71c1c;
}

.kpi-blue {
  color: var(--primary);
}

.kpi-orange {
  color: #c76a12;
}

/* tabelas */
.mid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.panel-head {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-weight: 700;
  color: var(--brand);
  font-size: 14px;
  background: #F6F5F6;
}

.panel-body {
  padding: 10px 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

thead th {
  background: #EFEDEF;
  color: var(--brand);
  font-weight: 700;
  padding: 10px 10px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

tbody td {
  padding: 10px 10px;
  border-bottom: 1px solid #e2e2e2;
  text-align: center;
  color: #111;
  font-weight: 700;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.table-scroll {
  max-height: 170px;
  overflow: auto;
  border-radius: 10px;
}


.bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini-value {
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  
}


@media (max-width: 768px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mid-grid {
    grid-template-columns: 1fr;
  }

  .bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-left {
    font-size: 13px;
  }

  .filter-control {
    height: 34px;
  }
}

@media (min-width: 450px) and (max-width: 650px) {
  .filter-left {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .filter-item {
    width: 100%;
    flex-wrap: wrap;
    white-space: normal;
  }

  .range-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .filter-control {
    width: 100%;
  }

  .filter-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .btn-green,
  .btn-red {
    width: 100%;
  }

  .range-sep {
    display: none;
  }
}

@media (max-width: 450px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .btn-green,
  .btn-red {
    width: 100%;
  }

  .filter-actions {
    width: 100%;
  }

  .range-group {
    width: 100%;
  }

  .filter-control {
    width: 100%;
  }

  .range-sep {
    display: none;
  }
}

/* ==============================
   TOAST / POPUP GLOBAL
   ============================== */
.toast-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;

  pointer-events: none;
  /* mantido pra não mudar comportamento */
  background: rgba(0, 0, 0, 0.10);
}

.toast {
  width: min(460px, 100%);
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  pointer-events: auto;
  text-align: center;

  transform: translateY(4px);
  opacity: 0;
  animation: toastIn 160ms ease-out forwards;
}

@keyframes toastIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.toast-head {
  position: relative;
  padding: 16px 18px 10px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.toast-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.86);
}

.toast-close {
  position: absolute;
  top: 10px;
  right: 10px;

  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 6px;
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.55);
}

.toast-close:hover {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.80);
}

.toast-body {
  padding: 10px 18px 0 18px;
}

.toast-message {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.72);
}

.toast-details {
  margin-top: 10px;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.70);
}

.toast-details summary {
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.72);
}

.toast-details ul {
  margin: 8px 0 0 18px;
}

.toast-actions {
  display: flex;
  justify-content: center;
  padding: 12px 18px 16px 18px;
}

.toast-btn {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: transparent;
  color: rgba(0, 0, 0, 0.78);
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  width: min(220px, 100%);
}

.toast-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.toast-success {
  border-top: 3px solid rgba(33, 163, 102, 0.85);
}

.toast-error {
  border-top: 3px solid rgba(217, 48, 37, 0.85);
}

.toast-warning {
  border-top: 3px solid rgba(242, 153, 0, 0.90);
}

.toast-info {
  border-top: 3px solid rgba(26, 115, 232, 0.85);
}


@media (max-width: 480px) {
  .toast-overlay {
    padding: 12px;
  }

  .toast {
    width: 100%;
    border-radius: 14px;
  }

  .toast-title {
    font-size: 14.5px;
  }

  .toast-message {
    font-size: 13.5px;
  }
}

/* ==============================
   CONFIRM MODAL
   ============================== */
.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.10);
}

.confirm-modal {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 16px 18px 14px 18px;
  text-align: center;
  position: relative;
}

.confirm-close {
  position: absolute;
  top: 10px;
  right: 10px;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 6px;
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.55);
}

.confirm-close:hover {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.80);
}

.confirm-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.86);
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.confirm-desc {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.72);
  margin-top: 10px;
}

.confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.confirm-btn {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: transparent;
  color: rgba(0, 0, 0, 0.78);
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  width: min(170px, 100%);
}

.confirm-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.confirm-danger {
  border-color: rgba(217, 48, 37, 0.22);
  color: rgba(217, 48, 37, 0.95);
}

.confirm-danger:hover {
  background: rgba(217, 48, 37, 0.06);
}

@media (max-width: 480px) {
  .confirm-actions {
    flex-direction: column;
  }

  .confirm-btn {
    width: 100%;
  }
}

/* ==========================================================
   STATUS COLORS (mantidos)
   ========================================================== */
.status-green {
  color: #2e7d32 !important;
  fill: #2e7d32 !important;
}

.status-red {
  color: #b71c1c !important;
  fill: #b71c1c !important;
}

.status-blue {
  color: #d7a008 !important;
  fill: #d7a008 !important;
}

.status-gray {
  color: #727272 !important;
  fill: #727272 !important;
}