:root {
  --color-bg: #eef0f4;
  --color-surface: #ffffff;
  --color-surface-alt: #f6f7fa;
  --color-text: #1e2433;
  --color-text-muted: #5b6270;
  --color-border: rgba(30, 41, 59, 0.09);
  --color-input-bg: #eef1f6;
  --color-input-border: rgba(30, 41, 59, 0.12);
  --color-primary: #33518f;
  --color-primary-dark: #253c6e;
  --color-primary-light: #e8edf9;
  --color-danger: #c94f4a;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(20, 26, 43, 0.05);
  --shadow-md: 0 6px 18px rgba(20, 26, 43, 0.07);
  --shadow-lg: 0 14px 32px rgba(20, 26, 43, 0.12);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);

  padding: 47px 0px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;

  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
  margin-left: 0px;
  margin-right: 0px;
  -webkit-font-smoothing: antialiased;
}

.containers {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  /* align-items: flex-start; */
  justify-content: center;
  gap: 14px;
  width: 100%;
  /* 3 cards de 420px + 2 gaps de 14px + padding lateral de 20px = 1308px */
  max-width: 1310px;
  padding: 5px 10px 10px 10px;
}

.container {
  background: var(--color-surface);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 420px;
  padding: 22px 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.container:hover {
  box-shadow: var(--shadow-lg);
}

/* == Títulos == */
h1, h2, h3 {
  margin-top: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  text-transform: none;
  color: var(--color-text);
  width: 100%;
}

/* h1/h2 são clicáveis: geral.js rola a página até o próprio título ao clicar */
h1, h2 {
  cursor: pointer;
}

h1 {
  font-size: 21px;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.container > h1:first-child,
.container > h2:first-child {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.container > h1:first-child::after,
.container > h2:first-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-primary);
}

h2 {
  font-size: 17px;
}

h3 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 20px;
  width: 100%;
  max-width: 100%;
  height: 1px;
  background-color: transparent;
}

p {
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 10px 0;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 400;

  flex-grow: 1; /* *** possível fonte de problemas futuros, segundo GPT *** */
  width: 100%;

}

label {
  display: block;
  margin-top: 10px;
  margin-bottom: 0px;
  color: #555;
}

/* == Formulários == */
select,
textarea,
input[type="date"],
input[type="datetime-local"],
input[type="time"],
input[type="text"],
input[type="number"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--color-input-border);
	background: var(--color-input-bg);
	border-radius: var(--radius-sm);
	margin-bottom: 2px;
	color: var(--color-text);
	height: auto;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="number"]:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* Agrupa 2 campos (label + input) numa mesma linha, só em desktop, para reduzir
   a altura de containers com muitos campos (ex.: Registro de Abastecimento). */
@media (min-width: 769px) {
  .linha-dupla {
    display: flex;
    align-items: stretch; /* ambos .campo-duplo ficam com a mesma altura (a do maior) */
    gap: 12px;
  }

  .linha-dupla .campo-duplo {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    /* label encostada no topo, input encostado embaixo — alinha os inputs dos 2
       campos na mesma linha mesmo quando um label quebra e o outro não. */
    justify-content: space-between;
  }

  /* Botões de ação lado a lado (ex.: Confirmar + Limpar), só em desktop.
     Seletor "button" (descendente, não só filho direto) porque o botão de
     logout mora dentro de #auth-logado (div de controle do login.php,
     virado "display:contents" pelo auth.js quando visível). */
  .botoes {
    display: flex;
    gap: 12px;
  }

  .botoes button {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
  }
}

fieldset{
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

/* == Campos de data e hora == */
input[type="date"],
input[type="datetime-local"],
input[type="time"] {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="date"]:hover,
input[type="datetime-local"]:hover,
input[type="time"]:hover {
  border-color: var(--color-primary);
}

input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="time"]:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* Ícone do seletor (calendário/relógio) — tingido de azul para combinar com o site.
   Suportado apenas em navegadores baseados em WebKit/Blink (Chrome, Edge, Safari);
   em outros navegadores, o ícone padrão do sistema é exibido normalmente. */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  filter: invert(40%) sepia(95%) saturate(2000%) hue-rotate(195deg) brightness(100%);
  transition: background-color 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
  background-color: rgba(0, 123, 255, 0.1);
}

input::placeholder {
  color: transparent;
}

input.destacado {
  background-color: var(--color-primary-light);
}

/* == BOTÕES == */
button {
  margin-top: 20px;
  width: 100%;
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(51, 81, 143, 0.25);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

button:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 6px 16px rgba(51, 81, 143, 0.3);
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(51, 81, 143, 0.25);
}

.btn-limpar {
 background-color: var(--color-danger);
 box-shadow: 0 2px 8px rgba(201, 79, 74, 0.25);
}

.btn-limpar:hover {
 background-color: #ab3f3b;
 box-shadow: 0 6px 16px rgba(201, 79, 74, 0.3);
}

/* Ícone de excluir item do histórico (span.btn-limpar, só o emoji, sem ser um
   botão de verdade): remove o fundo/sombra herdados de .btn-limpar, que criavam
   um "cartão" branco com sombra ao redor do ícone no tema claro. */
span.btn-limpar,
span.btn-limpar:hover {
  background: none;
  box-shadow: none;
}

/* Ícones nos botões */
/* Estilo comum para ícones de botão */
[class^="btn-"]::before {
  margin-right: 6px;
  display: inline-block;
  vertical-align: bottom;
  font-size: .9em; /* ajuste centralizado */
}

/* Ícones específicos */
.btn-adicionar::before { content: "➕"; }
.btn-salvar::before    { content: "💾"; }
.btn-confirmar::before { content: "✅"; }
.btn-limpar::before    { content: "🗑️"; }
.btn-download::before  { content: "⬇️"; }
.btn-localizar::before { content: "📍"; }
.btn-buscar::before    { content: "🔍"; }
.btn-repetir::before   { content: "🔄"; }
/* Opção 1: Cadeados (Mais intuitivo para sistemas e segurança)
.btn-login::before  { content: "🔓"; }
.btn-logoff::before { content: "🔒"; } */
/* Opção 2: Chave e Tchau (Mais amigável) */
.btn-login::before  { content: "🔑"; }
.btn-logoff::before { content: "👋"; }
/* Opção 3: Porta e Seta (Foco na ação de entrar/sair)
.btn-login::before  { content: "🚪"; }
.btn-logoff::before { content: "⬅️"; } */

input.half-width,
button.half-width {
  width: 100% !important;
  display: inline-block;
}

input.quarter-width,
button.quarter-width {
  width: 23% !important;
  display: inline-block;
}

/* Deixe o botão de exclusão pequeno e sem herdar estilo geral */
td.excluir {
  text-align: center;
  width: 30px;
  margin: 0px;
  padding: 0px;
}

td.excluir button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
  color: var(--color-danger);
  box-shadow: none;
}

.resultado {
  margin-top: 10px;
  margin-bottom: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--color-primary-light);
  border: 1px solid rgba(51, 81, 143, 0.18);
  border-radius: var(--radius-sm);
  color: var(--color-primary-dark);
  font-weight: 600;
  text-align: center;
}

.erro {
  color: var(--color-danger);
  font-size: 14px;
  text-align: center;
}

.erro a,
.erro a:visited,
.erro a:hover,
.erro a:active {
  color: inherit;
  font-size: inherit;
}

.dash-vazio-msg {
  margin: 2px 0;
  padding: 10px 16px;
  width: 100%;
  background-color: var(--color-primary-light);
  border: 1px solid rgba(51, 81, 143, 0.18);
  border-radius: var(--radius-sm);
  color: var(--color-primary-dark);
  font-size: 14px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
}

.dash-vazio-msg,
.dash-vazio-msg:visited,
.dash-vazio-msg:hover,
.dash-vazio-msg:active {
  color: var(--color-primary-dark);
}

.conteudo {
  flex-grow: 1;
  display: flex;
  align-items: center;     /* Centraliza verticalmente */
  justify-content: center; /* (Opcional) Centraliza horizontalmente */
  text-align: center;      /* Para centralizar texto */
  background: var(--color-surface);
}

/* .conteudo, quando envolve a tabela de itens (shop/trip): o card estica pra
   acompanhar a altura dos vizinhos na mesma linha (.containers usa align-items
   padrão "stretch"), e sem isso o cabeçalho da tabela ficaria centralizado no
   meio de todo esse espaço vazio quando a lista não tem itens ainda. */
.conteudo-tabela {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.langsel-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 6px 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Edge legado */
  z-index: 1001; /* levemente maior que #breadcrumb */
  flex-wrap: nowrap;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.langsel-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.langsel-btn {
  background: transparent;
  box-shadow: none;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 6px 12px;
  gap: 6px;
  height: 42px;
  max-width: 110px; /* <- limita largura */
  margin-top: 1px;
}

.langsel-btn .icon-svg {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.langsel-btn .icon-svg svg {
  width: 100%;
  height: 100%;
}

/* Hover/focus */
.langsel-btn:hover,
.langsel-btn:focus,
.langsel-btn.ativo {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* Nome do idioma visível no desktop */
.langsel-label {
  display: inline;
}

.imagem-transparente {
  background-color: transparent;
  mix-blend-mode: multiply; /* ou 'darken', dependendo do efeito desejado */
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 2px;
  flex-wrap: wrap;
  margin-bottom: 0px;
  align-items: flex-end;
}

.col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0px;
  padding: 10px;
}

.col-destaque {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-surface-alt);
  padding: 8px;
  margin-top: 2px;
}

/* == Tabelas == */
#tabela-itens {
  border-collapse: collapse;
  border: none;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden; /* Garante que o conteúdo interno (como o thead) também respeite os cantos */
  /*border: 1px solid red;*/
}

#tabela-itens thead {
  background-color: var(--color-primary);
  color: white;
}

#tabela-itens thead th {
  padding: 3px;
  padding-left: 5px;
  text-align: left;
  font-weight: bold;
  /*border-bottom: 1px solid #ccc;*/
}

#tabela-itens td, #tabela-itens th {
  border: none;
  padding: 2px;
  padding-left: 5px;
  text-align: left;
  /*border: 1px solid red;*/
}

#tabela-itens tbody tr:nth-child(even) {
  background-color: #f9f9f9; /* cor para linhas pares */
  /*border: 1px solid red;*/
}

#tabela-itens tbody tr:nth-child(odd) {
  background-color: #f1f1f1; /* cor para linhas ímpares */
  /*border: 1px solid red;*/
}

tr.linha-par {
  background-color: #f9f9f9 !important; /* cor para linhas pares */
  font-size: 14px;
}

tr.linha-impar {
  background-color: #f1f1f1 !important; /* cor para linhas ímpares */
  font-size: 14px;
}

.grupo-data {
  background-color: #e0e7f3 !important;
  color: #555;
}

.sub-total-data {
  font-size: 14px;
}

#lista-categorias,
#lista-combustiveis {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.categoria-item {
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.categoria-item span {
  font-size: 14px;
  line-height: 0;
}

.categoria-item button {
  background: none !important;
  box-shadow: none !important;
  border: none;
  /* Sem isso, o navegador ainda desenha o "chrome" nativo do <button> (bevel/
     sombra do sistema por trás do ícone), mais visível no tema claro. */
  appearance: none;
  -webkit-appearance: none;
  outline: none !important;
  cursor: pointer;
  font-size: 16px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 0px;
}

/* Reset do anel de foco interno específico do Firefox (não é coberto por outline/border). */
.categoria-item button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.categoria-item button:hover,
.categoria-item button:active,
.categoria-item button:focus,
.categoria-item button:focus-visible {
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
  transform: none;
}

.categoria-nome {
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none; /* Remove sublinhado */
  color: inherit; /* Mantém a cor natural */
}

.categoria-nome:hover {
  text-decoration: underline dotted; /* Opcional: efeito sutil ao passar o mouse */
}

/* -- Cabeçalho e rodapé -- */

.topo-principal {
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  z-index: 999;
  padding: 30px 16px 28px;
  text-align: center;
  border-radius: var(--radius);
  overflow: hidden; /* Garante que conteúdos internos respeitem o arredondamento */
  box-shadow: var(--shadow-lg);
}

.topo-conteudo h1 {
  margin: 0;
  font-size: 27px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.topo-conteudo .subtitulo {
  margin: 8px 0 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
}

.rodape-principal {
  background: var(--color-surface);
  width: 100%;
  z-index: 0;
  padding: 16px 12px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden; /* Garante que conteúdos internos respeitem o arredondamento */
  box-shadow: var(--shadow-sm);
}

.rodape-conteudo {
  margin: 0;
}

.subtitulo {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

.bloco-com-imagem {
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--color-surface-alt);
  border-radius: var(--radius-sm);
}

.bloco-com-imagem img.icone-aplicacao {
  width: 33.33%;     /* 1/3 da largura do container */
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  margin: 10px;
}

.bloco-com-imagem p {
  width: 66.66%;     /* 2/3 da largura */
  margin: 0px 0px 0px -20px;
  padding: 10px;
  text-align: left;
  background: none;
}

.icon {
  font-size: 14px;
}

#historico-media:empty {
  margin: 0;
  padding: 0;
  height: 0;
  min-height: 0;
  display: none; /* opcional */
}


.dash-wrapper {
  width: 100%;
  flex: 1 1 100%;   /* força a linha inteira dentro do .containers pai */
  box-sizing: border-box;
}

/* -- Indicadores de consumo (car.php / car-indicadores.js) -- */

.cards-indicadores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}

/* Reaproveita a aparência de .resultado, só ajusta o layout interno:
   label (span) mais discreta em cima, valor (strong) em destaque embaixo. */
.card-indicador {
  flex: 1 1 180px;
  margin-top: 0;
}

.card-indicador span {
  display: block;
  font-size: 13px;
  font-weight: normal;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.card-indicador strong {
  font-size: 16px;
  color: var(--color-primary-dark);
}

/* Wrapper com altura fixa para os gráficos Chart.js (maintainAspectRatio: false) */
.dash-grafico-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  margin-bottom: 15px;
}















/* ==========================================================================
   Painel de Edição/Gerenciamento de Combustíveis (.combustivel-item-editar)
   ========================================================================== */
/* ==========================================================================
   Painel de Edição/Gerenciamento de Combustíveis (.combustivel-item-editar)
   ========================================================================== */

/* ==========================================================================
   Painel de Edição/Gerenciamento de Combustíveis
   ========================================================================== */

/* ==========================================================================
   Painel de Edição/Gerenciamento de Combustíveis
   ========================================================================== */

/* ==========================================================================
   Painel de Edição/Gerenciamento de Combustíveis
   ========================================================================== */

/* 1. Descola o painel inteiro do botão superior "Gerenciar combustíveis" */
#painel-combustiveis {
  margin-top: 20px; 
}

/* 2. Container de cada linha (tanto edição quanto inclusão de novo) com DESTAQUE */
.combustivel-item-editar,
.combustivel-item-novo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  width: 100%;
  
  /* --- Visual de Destaque (Card) --- */
  background-color: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  padding: 12px;             /* Respiro interno */
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Destaque adicional sutil ao passar o mouse por cima do item */
.combustivel-item-editar:hover,
.combustivel-item-novo:hover {
  border-color: #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* 3. Campos de texto de edição e inclusão unificados */
.combustivel-item-editar .input-renomear-combustivel,
.combustivel-item-novo #novo-combustivel-nome {
  flex: 1;
  margin-bottom: 0;
  padding: 10px 12px;
  border: 1px solid var(--color-input-border);
  background: var(--color-input-bg);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 14px;
  height: 42px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.combustivel-item-editar .input-renomear-combustivel:focus,
.combustivel-item-novo #novo-combustivel-nome:focus {
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px var(--color-primary-light);
  outline: none;
}

/* 4. Botões de "Salvar" e "Adicionar" ao lado dos campos unificados */
.combustivel-item-editar .btn-salvar-combustivel,
.combustivel-item-novo .btn-adicionar {
  width: auto;
  margin-top: 0;
  padding: 0 18px;
  height: 42px;
  font-size: 14px;
  font-weight: bold;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Efeito Hover e Active nos botões */
.combustivel-item-editar .btn-salvar-combustivel:hover,
.combustivel-item-novo .btn-adicionar:hover {
  background-color: var(--color-primary-dark);
}

.combustivel-item-editar .btn-salvar-combustivel:active,
.combustivel-item-novo .btn-adicionar:active {
  transform: scale(0.98);
}

/* 5. Feedback visual de erro */
#combustivel-erro {
  color: var(--color-danger);
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: bold;
}


























/* ------------------------------------------*/
/* ---------------- Android ---------------- */
/* ----------------------------------------- */

/* Em WebView, remove o espaçamento antes ocupado pela barra de botões */
.shift-up {
    margin-top: -50px;
}

/* YouTube Video embedded */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 proporção */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


