/* jQuery UI Datepicker — BeMyTraveler Theme Skin */
.ui-datepicker {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 12px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    width: 300px;
    z-index: 100001 !important;
}
.ui-datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 4px 12px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 8px;
    background: none;
    border-radius: 0;
}
.ui-datepicker-title {
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
    flex: 1;
    text-align: center;
}
.ui-datepicker-prev, .ui-datepicker-next {
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}
.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
    background: #C9A227;
    border-color: #C9A227;
    color: #fff;
}
.ui-datepicker-prev span, .ui-datepicker-next span {
    display: block;
    text-indent: -9999px;
}
.ui-datepicker-prev::after { content: '\2039'; text-indent: 0; display: block; text-align: center; font-size: 18px; line-height: 30px; }
.ui-datepicker-next::after { content: '\203A'; text-indent: 0; display: block; text-align: center; font-size: 18px; line-height: 30px; }
.ui-datepicker table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 2px;
}
.ui-datepicker th {
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 6px 0;
    text-align: center;
    background: none;
    border: none;
}
.ui-datepicker td {
    padding: 0;
    border: none;
    background: none;
}
.ui-datepicker td a, .ui-datepicker td span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #334155;
    text-align: center;
    transition: all 0.15s;
    text-decoration: none;
    margin: 0 auto;
    background: none;
    border: none;
}
.ui-datepicker td a:hover {
    background: #fef3c7;
    color: #92400e;
}
.ui-datepicker .ui-datepicker-today a {
    background: #f1f5f9;
    font-weight: 700;
    color: #0f172a;
}
.ui-datepicker .ui-state-active {
    background: #C9A227 !important;
    color: #fff !important;
    font-weight: 700;
    border-radius: 8px;
}
.ui-datepicker .ui-state-disabled span {
    color: #cbd5e1;
    cursor: not-allowed;
}

