.ui-datepicker {
  min-width: 100%;
}
.ui-datepicker-header {
  display: flex;
  justify-content: space-between;
  height: 40px;
  width: 100%;
  align-items: center;
  background: unset;
  border: none;
  color: var(--Black, #2e2e2e);
  font-family: Involve;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  padding-right: 10px;
  padding-left: 10px;
}
.ui-datepicker-header .ui-icon {
  color: var(--Black, #2e2e2e);
  font-family: Involve;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  cursor: pointer;
}
.ui-datepicker-next {
  position: relative;
  order: 1;
}
.ui-datepicker-title {
  position: relative;
  order: 0;
}
.ui-datepicker-calendar {
  width: 100%;
  margin-top: 10px;
}
.ui-datepicker-calendar th {
  color: var(--Black, #2e2e2e);
  font-family: Involve;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}
.ui-datepicker-calendar tr {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ui-datepicker-calendar thead {
  margin-bottom: 15px;
}
.ui-datepicker-calendar thead tr {
  justify-content: space-between;
  display: flex;
  gap: 20px;
  padding: 0 10px;
}

.ui-datepicker-calendar td {
  min-width: 35px;
}

.ui-state-default,
.ui-state-active {
  font-family: Involve;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  flex-shrink: 0;
  border-radius: 5px;
  transition: 0.3s;
  border-width: 2px;
  border-style: solid;
}

.ui-state-default {
  color: var(--Grey, #626262);
  border-color: transparent;
}
.ui-datepicker-other-month span {
  color: var(--Light-grey, #cac3c3);
  cursor: pointer;
}
.ui-state-default:hover {
  border-color: var(--Pink, #e5097f);
}
.ui-datepicker-unselectable,
.ui-datepicker-unselectable .ui-state-default:hover {
  border-color: transparent;
  pointer-events: none;
}

.ui-state-active {
  border-color: transparent;
  color: white;
  background: var(
    --Pink,
    linear-gradient(0deg, #f3669a 0%, #f3669a 100%),
    linear-gradient(0deg, #cd2b67 0%, #cd2b67 100%),
    #e5097f
  ) !important;
}

@media (max-width: 759px) {
  .ui-datepicker-calendar tr {
    gap: 5px;
  }
  .ui-datepicker-header,
  .ui-datepicker-calendar th,
  .ui-state-default,
  .ui-state-active {
    font-size: 14px;
  }
  .ui-datepicker-header {
    padding: 0 20px;
  }
}
