@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* font-family: 'Montserrat', sans-serif; */

.ui-datepicker {
    width: 100%;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    border-radius: 15px;
}

.ui-datepicker-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    position: relative;
}

.ui-datepicker-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ui-datepicker-year,
.ui-datepicker-month {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1em;
}

.ui-datepicker-year {
    font-weight: 700;
    padding-left: 5px;
}

.ui-datepicker-prev.ui-corner-all {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.ui-datepicker-prev.ui-corner-all::after {
    content: '\f053';
    font-family: 'fontawesome';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ui-datepicker-prev.ui-corner-all span {
    font-size: 0;
}

.ui-datepicker-next.ui-corner-all {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.ui-datepicker-next.ui-corner-all::after {
    content: '\f054';
    font-family: 'fontawesome';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ui-datepicker-next.ui-corner-all span {
    font-size: 0;
}

.ui-datepicker-calendar {
    width: calc(100% - 35px);
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
	padding-bottom: 17px !important;
}

.ui-datepicker-calendar tr th {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    width: 14.28%;
    background-color: rgba(0, 0, 0, 0.1);
}

.ui-datepicker-calendar tbody tr td .ui-state-default {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    padding: 11px;
}

.ui-datepicker-week-end.ui-datepicker-today .ui-state-default {
    color: #000000;
}

.ui-datepicker-current-day .ui-state-default.ui-state-active {
    color: #000000;
}

.ui-datepicker-calendar tbody tr td .ui-state-default:hover {
    opacity: 1;
}

.ui-datepicker-days-cell-over.undefined.ui-datepicker-today {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui-datepicker-days-cell-over.undefined.ui-datepicker-today a {
    width: 40px;
    height: 40px;
    background: #e13a9d !important;
    border-radius: 50%;
}

.ui-datepicker-unselectable.ui-state-disabled.undefined span {
    width: 40px;
    height: 40px;
    background: #000000 !important;
    border-radius: 50%;
    opacity: 0.3;
    margin: 0 auto;
}

.ui-datepicker-days-cell-over.undefined.ui-datepicker-today .ui-state-default,
.ui-datepicker-unselectable.ui-state-disabled.undefined .ui-state-default {
    color: #ffffff;
}

.ui-datepicker-calendar tbody tr td {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-collapse: collapse;
}

.ui-datepicker-calendar .notav {
    position: relative;
    text-align: center;
}

.ui-datepicker-calendar .notav .ui-state-default {
    color: #FFFFFF !important;
    font-weight: 600;
    background-color: #ff4b53 !important;
}

.ui-datepicker-calendar .notav::after {
    content: "Booked";
    font-size: 10px;
    text-align: center;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    color: #FFFFFF !important;
}

.ui-datepicker-calendar tr:first-child th:first-child {
    border-top-left-radius: 15px;
	overflow: hidden;
}

.ui-datepicker-calendar tr:first-child th:last-child {
    border-top-right-radius: 15px;
	overflow: hidden;
}

.ui-datepicker-calendar tr:last-child td:first-child,
.ui-datepicker-calendar tr:last-child td:first-child .ui-state-default {
    border-bottom-left-radius: 15px;
	overflow: hidden;
}

.ui-datepicker-calendar tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
	overflow: hidden;
}

.ui-state-disabled.av {
    background-color: rgba(0, 0, 0, 0.03);
    color: rgba(0, 0, 0, 0.5);
}

.ui-state-disabled.av .ui-state-default {
	color: rgba(0, 0, 0, 0.5);
}

/* Default available dates (white background) */


/* Booked dates (red background) */


/* Booked dates with time slot '7 AM - 6 PM' (red background + underline) */
/* .ui-datepicker-calendar .notav.special-slot span {
    background-color: #ff4b53 !important; 
    text-decoration: underline; 
} */

.ui-datepicker-calendar .notav.special-slot .ui-state-default {
    padding: 8px 11px 14px 11px;
}

.ui-datepicker-calendar .notav.special-slot::after {
    border-bottom: 4px solid #9593D9;
}

