body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

.topbar {
  padding: 22px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.topbar h1 {
  margin: 0;
  font-size: 24px;
}

.topbar p {
  margin: 6px 0 0;
  color: #cbd5e1;
}

button {
  border: 0;
  padding: 12px 18px;
  border-radius: 12px;
  background: #38bdf8;
  color: #082f49;
  font-weight: bold;
  cursor: pointer;
}

.container {
  padding: 22px;
}

.status-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #111827;
  border: 1px solid #334155;
  margin-bottom: 20px;
}

.status-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #facc15;
  box-shadow: 0 0 18px #facc15;
}

.status-card.verde .status-dot {
  background: #22c55e;
  box-shadow: 0 0 18px #22c55e;
}

.status-card.amarelo .status-dot {
  background: #facc15;
  box-shadow: 0 0 18px #facc15;
}

.status-card.vermelho .status-dot {
  background: #ef4444;
  box-shadow: 0 0 18px #ef4444;
}

.status-card strong {
  display: block;
  font-size: 18px;
}

.status-card span {
  color: #cbd5e1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 14px;
}

.card {
  background: #111827;
  border: 1px solid #334155;
  border-radius: 18px;
  padding: 18px;
}

.card span {
  color: #94a3b8;
  font-size: 14px;
}

.card strong {
  display: block;
  font-size: 28px;
  margin-top: 8px;
}

.info-line {
  margin: 20px 0;
  color: #cbd5e1;
}

.table-box {
  background: #111827;
  border: 1px solid #334155;
  border-radius: 18px;
  padding: 18px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #334155;
  text-align: left;
}

th {
  color: #93c5fd;
}

td {
  color: #e5e7eb;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

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