/* Container */
.ui-datepicker {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
.ui-datepicker {
  font-size: 16px; /* Tamaño de fuente */
  width: 390px; /* Ancho del datepicker */
  margin: 20px auto; /* Márgenes superior e inferior (auto para centrar horizontalmente) */
}
.ui-datepicker table {
  width: 100%;
  font-size: 1.5em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}
.ui-datepicker-calendar tbody td {
  padding: 4px;
}
/* Header */
.ui-datepicker-header {
  background-color: #6200ee;
  color: #ffffff;
  border: none;
  border-radius: 4px 4px 0 0;
}

/* Title */
.ui-datepicker-title {
  margin: 10px 0;
  font-weight: bold;
}
.ui-datepicker-title span{
  font-size: 1.6rem;
}
/* Previous and Next buttons */
.ui-datepicker-prev,
.ui-datepicker-next {
  color: #6200ee;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  width: 36px;
  height: 36px;
  text-align: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
  background-color: rgba(98, 0, 238, 0.1);
}

/* Calendar */
.ui-datepicker-calendar {
  width: 100%;
}

/* Table header */
.ui-datepicker-calendar thead {
  background-color: #6200ee;
  color: #ffffff;
}

/* Table cells */
.ui-datepicker-calendar th {
  padding: 8px;
}

.ui-datepicker-calendar tbody td {
  padding: 8px;
}

/* Hover effect */
.ui-datepicker-calendar tbody .ui-state-hover {
  background-color: rgba(99, 0, 238, 0.432);
  color:#fff;
}

/* Selected date */
.ui-datepicker-calendar tbody .ui-state-active {
  background-color: #6200ee;
  color: #ffffff;
}

/* Today's date */
.ui-datepicker-calendar tbody .ui-datepicker-today {
  background-color: rgba(0, 0, 0, 0.04);
}

/* Highlighted date range */
.ui-datepicker-calendar tbody .ui-state-highlight {
  background-color: rgb(65 219 90 / 77%);
    color: #fff;
    border: rgb(46 183 35);
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid #8660f39e;
  background: #f6f6f6;
  font-weight: normal;
  color: #1b195b;
  border-radius: 10px;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
  transform: scale(1.5);
}