/* ==============================
   CONTAINER PRINCIPAL
   ============================== */
#dje-calendar-wrapper {
  margin: 20px auto;
  max-width: 1200px;
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #495962;
}

/* ==============================
   CONTROLES DO CALENDÁRIO
   ============================== */
#calendar-controls {
  margin-bottom: 15px;
}
#calendar-controls select {
  padding: 6px 10px;
  border: 1px solid #d3e2e8;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
}

/* ==============================
   NAVEGAÇÃO
   ============================== */
#calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
#calendar-nav button {
  padding: 6px 12px;
  border: 1px solid #d3e2e8;
  background: #f4f8fa;
  color: #495962;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}
#calendar-nav button:hover {
  background: #4e88a3;
  border-color: #4e88a3;
  color: #fff;
}
#current-month {
  display: none; /* não exibimos o nome do mês na navegação */
}

/* ==============================
   GRID DE MESES
   ============================== */
#calendar-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* ==============================
   CARDS DOS MESES
   ============================== */
.month-table {
  /*border-collapse: collapse;*/
  width: 280px;
  min-height: 330px;
  text-align: center;
  display: none;
  background: #fff;
  /*border: 1px solid #d3e2e8;*/
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.month-table.active {
  display: table;
}

/* Cabeçalho do mês/ano */
.month-table th {
  background: #4e88a3;
  color: #fff;
  padding: 10px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  height: 48px;        /* mesma proporção de Março/2025 */
  line-height: 28px;
}

/* Dias da semana */
.month-table tr:nth-child(2) td {
  font-size: 12px;
  font-weight: bold;
  color: #666;
  background: #fafafa;
  height: 32px;
  border: none !important;
}

/* Dias do calendário */
.month-table td {
  /*border: 1px solid #e9f1f4;*/
  padding: 6px;
  font-size: 14px;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  border: none !important
}

/* Links dos dias com arquivo */
.month-table td a.day-link {
  display: block;
  width: 100%;
  min-height: 80%;
  background: #d3e2e8;
  border-radius: 6px;
  color: #333;
  font-weight: bold;
  line-height: 28px;
  text-decoration: none !important;  /* remove sublinhado */
  transition: all 0.2s ease-in-out;
}
.month-table td a.day-link:hover {
  background: #4e88a3;
  color: #fff;
  text-decoration: none !important;
}
.month-table td a.day-link:visited,
.month-table td a.day-link:focus,
.month-table td a.day-link:active {
  text-decoration: none !important;
  outline: none;
}

/* ==============================
   RESPONSIVIDADE
   ============================== */
@media (max-width: 768px) {
  #calendar-container {
    flex-direction: column;
    align-items: center;
  }
  .month-table {
    width: 90%;
  }
}