/* Seletor de data/mês minimalista (substitui o calendário nativo do navegador).
   Identidade Dra. Mychelle: terracota #9b514c sobre branco, cantos suaves. */

/* Esconde o ícone/popup nativo — o campo vira só um gatilho pro seletor próprio */
.dp-field { cursor: pointer; }
.dp-field::-webkit-calendar-picker-indicator { display: none; -webkit-appearance: none; }
.dp-field::-webkit-inner-spin-button { display: none; }

.dp-pop {
  position: absolute;
  z-index: 99999;
  background: #ffffff;
  border: 1px solid #ece7e2;
  border-radius: 16px;
  box-shadow: 0 14px 40px -14px rgba(122, 63, 59, 0.30);
  padding: 14px;
  width: 268px;
  font-family: 'Poppins', system-ui, sans-serif;
  color: #3a3a3a;
  user-select: none;
}

.dp-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.dp-title {
  font-weight: 600; font-size: 14px; color: #7a3f3b; text-transform: capitalize;
}
.dp-nav {
  border: none; background: transparent; color: #9b514c;
  font-size: 20px; line-height: 1; width: 30px; height: 30px;
  border-radius: 9px; cursor: pointer; transition: background .15s;
}
.dp-nav:hover { background: #f6efec; }

.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-dow { text-align: center; font-size: 10px; color: #c0b0ab; padding: 5px 0; }
.dp-day {
  text-align: center; font-size: 13px; padding: 8px 0; border-radius: 9px;
  cursor: pointer; border: none; background: transparent; color: #3a3a3a;
  transition: background .12s;
}
.dp-day:hover { background: #f6efec; }
.dp-day.dp-out { color: #d6cdc9; }
.dp-day.dp-today { box-shadow: inset 0 0 0 1px #c47a73; }
.dp-day.dp-sel { background: #9b514c; color: #fff; }
.dp-day.dp-sel:hover { background: #7a3f3b; }

.dp-months { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.dp-month {
  text-align: center; font-size: 13px; padding: 12px 0; border-radius: 11px;
  cursor: pointer; border: none; background: #faf7f5; color: #3a3a3a;
  text-transform: capitalize; transition: background .12s;
}
.dp-month:hover { background: #f0e7e3; }
.dp-month.dp-sel { background: #9b514c; color: #fff; }

.dp-foot { display: flex; justify-content: space-between; margin-top: 12px; }
.dp-link {
  border: none; background: transparent; color: #9b514c; font-size: 12px;
  cursor: pointer; padding: 2px 4px;
}
.dp-link:hover { text-decoration: underline; }
