:root {
  --cor-primaria: #004E4C;
  --cor-secundaria: #008B5D;
  --cinza-claro: #F1F5F4;
  --branco: #FFFFFF;
  --borda: #DADADA;
  --sombra: 0 4px 10px rgba(0,0,0,0.08);
  --radius: 12px;
  --fonte: 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  background: var(--cinza-claro);
  font-family: var(--fonte);
}

.calendar-movimentacoes-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: flex-start;
}

/* Calendário ocupa mais espaço */
#calendar {
    flex: 3;
    min-width: 700px;
}

/* Movimentações à direita */
.lista-movimentacoes {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    max-height: 700px;
    overflow-y: auto;
}

.lista-movimentacoes h2 {
    margin-top: 0;
    font-size: 18px;
    color: #2c3e50;
}

.lista-movimentacoes ul {
    list-style: none;
    padding: 0;
}

.lista-movimentacoes li {
    background: #f4f6f7;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 4px solid #00995D;
}

.sobreaviso-dashboard {
  padding: 20px;
}

/* Cabeçalho */
.header-sobreaviso {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.header-sobreaviso h1 {
  font-size: 2rem;
  color: var(--cor-primaria);
  border-left: 6px solid var(--cor-primaria);
  padding-left: 12px;
}

.header-botoes {
  display: flex;
  gap: 12px;
}

.btn-acao {
  background: var(--cor-primaria);
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.btn-acao:hover {
  transform: scale(1.05);
  box-shadow: var(--sombra);
}

.badge {
  background: red;
  border-radius: 50%;
  padding: 4px 8px;
  font-size: 0.8rem;
}

/* Cards */
.cards-container {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-bottom: 25px;
}

.sobreaviso-card {
  background: white;
  padding: 18px;
  height: 120px;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  width: 35%;
  min-width: 250px;
}

.sobreaviso-card h3 {
  margin: 0 0 10px;
  color: var(--cor-primaria);
}

.sobreaviso-card p {
  font-size: 1.4rem;
  font-weight: bold;
}

.hidden {
    display: none;
}

.dropdown-exportar {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu-exportar {
    position: absolute;
    top: 45px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: var(--sombra);
    padding: 10px;
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}

.dropdown-menu-exportar button {
    background: none;
    border: none;
    text-align: left;
    padding: 8px;
    width: 100%;
    cursor: pointer;
}

.dropdown-menu-exportar button:hover {
    background: #eeeeee;
}

.hidden {
    display: none;
}

.mov-item {
    margin-bottom: 10px;
    padding: 8px 10px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    list-style: none;
    font-size: 14px;
}

/* Origem = vermelho */
.mov-item .origem {
    color: #c0392b; /* vermelho elegante */
    font-weight: bold;
}

/* Destino = verde */
.mov-item .destino {
    color: #1e8449; /* verde forte */
    font-weight: bold;
}
