/* Minimal jQuery UI Datepicker styling bundled by SmartBookingsPro
   Purpose: avoid relying on theme loading jQuery UI CSS.
   This is intentionally lightweight (not a full theme). */

.ui-datepicker {
    background: #fff;
    border: 1px solid #dcdcde;
    padding: 10px;
    width: 18em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    z-index: 999999 !important;
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: 6px 0;
    margin-bottom: 6px;
}

.ui-datepicker .ui-datepicker-title {
    text-align: center;
    font-weight: 600;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 6px;
    width: 1.8em;
    height: 1.8em;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
    left: 4px;
}

.ui-datepicker .ui-datepicker-next {
    right: 4px;
}

.ui-datepicker table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.ui-datepicker th {
    font-weight: 600;
    padding: 6px 0;
    text-align: center;
    font-size: 12px;
    color: #1d2327;
}

.ui-datepicker td {
    padding: 0;
    text-align: center;
}

.ui-datepicker td a,
.ui-datepicker td span {
    display: block;
    padding: 6px 0;
    text-decoration: none;
    border-radius: 6px;
}

.ui-datepicker td a:hover {
    background: #f0f0f1;
}

.ui-datepicker .ui-state-active {
    background: #2271b1;
    color: #fff;
}

.ui-datepicker .ui-state-disabled span {
    color: #a7aaad;
}