/* xl - DESKTOP STYLES */ 
.wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td a, 
.wc-bookings-date-picker .ui-datepicker td .ui-state-default {
	    display: flex!important;
	    justify-content: center!important;
}

.ui-datepicker-header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

/* Reordenamiento visual de los elementos */
.ui-datepicker-prev {
  order: 1; /* Primero a la izquierda */
}

.ui-datepicker-title {
  order: 2; /* En el centro */
  text-align: center;
}

.ui-datepicker-next {
  order: 3; /* Al final a la derecha */
}



/* 1. Oculta el texto interno de los spans en los botones */
.ui-datepicker-prev span,
.ui-datepicker-next span {
  text-indent: -9999px;
  display: block;
  overflow: hidden;
}

/* 2. Formato e icono para el botón Anterior (<) */
.ui-datepicker-prev {
  order: 1;
  cursor: pointer;
  text-decoration: none;
  padding: 0 8px;
}
.ui-datepicker-prev::before {
  content: "❮"; /* O puedes usar un icono de FontAwesome/SVG */
  color: #333;
  font-size: 14px;
	display:none
}

/* 3. Formato e icono para el botón Siguiente (>) */
.ui-datepicker-next {
  order: 3;
  cursor: pointer;
  text-decoration: none;
  padding: 0 8px;
}
.ui-datepicker-next::before {
  content: "❯"; /* O puedes usar un icono de FontAwesome/SVG */
  color: #333;
  font-size: 14px;
	display: none;
}

/* 4. Asegura la alineación en los extremos */
.ui-datepicker-header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
}

.ui-datepicker-title {
  order: 2;
  text-align: center;
}

.wc-bookings-date-picker .ui-datepicker .ui-datepicker-prev span, .wc-bookings-date-picker .ui-datepicker .ui-datepicker-next span {
	margin-top:8px;
}


/* Centra el contenido dentro de las celdas de encabezado */
.ui-datepicker table thead th {
  text-align: center;
}

/* Opcional: Asegura que el span interno ocupe todo el ancho disponible */
.ui-datepicker table thead th span {
  display: block;
  text-align: center;
}

