:root {
  --green: #3fb950;
  --yellow: #b9b73f;
  --red: #b9433f;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #3d3c46;
}
body header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #53525f;
}
body header #logo {
  font-size: 2rem;
  font-weight: bold;
  color: #d3d3d3;
}
body header #status-sistema {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.2rem;
  color: #3fb950;
}
body main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 48px;
}
body main #chargers {
  height: 100%;
  width: 75%;
}
body main #chargers #chargers-grid {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
}
body main #chargers #chargers-grid .charger-card {
  width: 19%;
  height: 80%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  position: relative;
}
body main #chargers #chargers-grid .charger-card.inativo {
  background: #53525f;
  border-color: rgba(255, 255, 255, 0.1);
}
body main #chargers #chargers-grid .charger-card.inativo .charger-status {
  color: #d3d3d3;
  opacity: 0.4;
}
body main #chargers #chargers-grid .charger-card.ativo {
  background: #53525f;
  border-color: #3fb950;
}
body main #chargers #chargers-grid .charger-card.ativo .charger-status {
  color: #3fb950;
}
body main #chargers #chargers-grid .charger-card .charger-id {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d3d3d3;
  margin-bottom: 20px;
}
body main #chargers #chargers-grid .charger-card .charger-nome, body main #chargers #chargers-grid .charger-card .charger-tipo, body main #chargers #chargers-grid .charger-card .charger-kw {
  font-size: 0.9rem;
  width: 65%;
  text-align: left;
  color: #d3d3d3;
  display: flex;
  gap: 4px;
}
body main #chargers #chargers-grid .charger-card .charger-nome .resultado, body main #chargers #chargers-grid .charger-card .charger-tipo .resultado, body main #chargers #chargers-grid .charger-card .charger-kw .resultado {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: -3px;
}
body main #chargers #chargers-grid .charger-card .fim-slot {
  width: 100%;
  position: absolute;
  bottom: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
body main #chargers #chargers-grid .charger-card .fim-slot .charger-status {
  font-size: 1.2rem;
  font-weight: bold;
}
body main #chargers #chargers-grid .charger-card .fim-slot .btn-encerrar, body main #chargers #chargers-grid .charger-card .fim-slot .btn-iniciar {
  width: 30%;
  padding: 6px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 500ms;
}
body main #chargers #chargers-grid .charger-card .fim-slot .btn-encerrar:hover, body main #chargers #chargers-grid .charger-card .fim-slot .btn-iniciar:hover {
  scale: 1.1;
  transition: 500ms;
}
body main #chargers #chargers-grid .charger-card .fim-slot .btn-iniciar {
  background: #3fb950;
}
body main #chargers #chargers-grid .charger-card .fim-slot .btn-encerrar {
  background: #b9433f;
}
body main #dashboard {
  height: 80%;
  width: 20%;
  gap: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body main #dashboard #metricas {
  display: flex;
  flex-direction: column;
  height: 30%;
  gap: 12px;
}
body main #dashboard #metricas > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: #53525f;
  border-radius: 8px;
}
body main #dashboard #metricas > div .metric-label {
  font-size: 1.2rem;
  color: #d3d3d3;
  opacity: 0.8;
}
body main #dashboard #metricas > div .metric-value {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d3d3d3;
}
body main #dashboard #ocpp-log {
  height: 45%;
  overflow-y: auto;
  padding: 10px;
  background: rgb(49.0346153846, 48.2307692308, 56.2692307692);
  border-radius: 8px;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
}
body main #dashboard #ocpp-log .ocpp-entry {
  display: flex;
  gap: 10px;
  line-height: 1.8;
}
body main #dashboard #ocpp-log .ocpp-entry .ocpp-ts {
  color: #d3d3d3;
  opacity: 0.4;
  min-width: 40px;
}
body main #dashboard #ocpp-log .ocpp-entry.info .ocpp-msg {
  color: #6eb3f7;
}
body main #dashboard #ocpp-log .ocpp-entry.warn .ocpp-msg {
  color: #b9b73f;
}
body main #dashboard #ocpp-log .ocpp-entry.error .ocpp-msg {
  color: #b9433f;
}
body main #modal-nova-sessao {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}
body main #modal-nova-sessao.aberto {
  display: flex;
}
body main #modal-nova-sessao #modal-conteudo {
  width: 560px;
  background: #53525f;
  border-radius: 12px;
  padding: 26px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
body main #modal-nova-sessao #modal-conteudo h2 {
  color: #d3d3d3;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao .form-input {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao .form-input > input, body main #modal-nova-sessao #modal-conteudo #form-nova-sessao .form-input select {
  outline: none;
  padding: 4px 8px;
  border-radius: 4px;
  border: none;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao .form-input > label {
  color: #d3d3d3;
  font-weight: 500;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao #horarios {
  display: flex;
  width: 70%;
  justify-content: space-between;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao #horarios > .form-input {
  width: 48%;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao #modal-erro {
  color: #b9433f;
  font-weight: bold;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao #form-botoes {
  width: 70%;
  display: flex;
  justify-content: space-around;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao #form-botoes > button {
  width: 30%;
  padding: 6px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 500ms;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao #form-botoes > button:hover {
  scale: 1.1;
  transition: 500ms;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao #form-botoes > button#btn-iniciar {
  background: #3fb950;
}
body main #modal-nova-sessao #modal-conteudo #form-nova-sessao #form-botoes > button#btn-cancelar {
  background: #b9433f;
}
body main #modal-relatorio {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body main #modal-relatorio.aberto {
  display: flex;
}
body main #modal-relatorio #modal-relatorio-conteudo {
  background: #53525f;
  border-radius: 12px;
  padding: 28px;
  width: 560px;
  color: #d3d3d3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
body main #modal-relatorio #modal-relatorio-conteudo h2 {
  margin-bottom: 24px;
}
body main #modal-relatorio #modal-relatorio-conteudo p {
  font-size: 1.1rem;
  width: 40%;
  text-align: left;
}
body main #modal-relatorio #modal-relatorio-conteudo button {
  margin-top: 24px;
  width: 30%;
  padding: 6px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 500ms;
}
body main #modal-relatorio #modal-relatorio-conteudo button:hover {
  scale: 1.1;
  transition: 500ms;
}/*# sourceMappingURL=style.css.map */