/* ============================================
   CONTAINER
============================================ */
.ui-datepicker {
    background: #ffffff;
    border: 2px solid #057efc;
    padding: 15px;
    border-radius: 14px;
    width: 270px !important;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* ============================================
   HEADER
============================================ */
.ui-datepicker-header {
    background: linear-gradient(135deg, #057efc, #8990b0);
    color: #fff;
    padding: 10px 0;
    border-radius: 10px;
    margin-bottom: 8px;
}

.ui-datepicker-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Navigation arrows */
.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer;
    color: #fff !important;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    transform: scale(1.25);
}

/* ============================================
   TABLE STYLE
============================================ */
.ui-datepicker th {
    color: #1633c6;
    padding: 6px 0;
    font-weight: 700;
}

.ui-datepicker td {
    text-align: center;
}

/* Date numbers */
.ui-datepicker td a {
    display: block;
    padding: 8px;
    border-radius: 8px;
    color: #1633c6;
    font-weight: 600;
    transition: 0.2s ease;
}

/* Hover effect */
.ui-datepicker td a:hover {
    background: #fe5900;
    color: #fff;
}

/* ============================================
   ACTIVE (SELECTED DATE)
============================================ */
.ui-datepicker .ui-state-active {
    background: #da4bd9 !important;
    color: #fff !important;
    border-radius: 8px;
}

/* ============================================
   TODAY
============================================ */
.ui-datepicker-today a {
    background: rgba(5, 126, 252, 0.15);
    border: 1px solid #057efc;
    color: #057efc;
    border-radius: 8px;
}

/* ============================================
   DISABLED DAYS (inactive)
============================================ */
.ui-datepicker-unselectable,
.ui-datepicker-unselectable span {
    color: #b3b3b3 !important;
    opacity: 1 !important;
    text-decoration: line-through;
    cursor: not-allowed;
}

.ui-datepicker-unselectable:hover {
    background: transparent !important;
}


.booking-popup {
    border-radius: 16px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1633c6;
    border-left: 4px solid #fe5900;
    padding-left: 10px;
}

.modern-input {
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #d0d4de;
    transition: 0.3s ease-in-out;
}

.modern-input:focus {
    border-color: #057efc;
    box-shadow: 0 0 0 3px rgba(5, 126, 252, 0.25);
}

.gradient-btn {
    background: linear-gradient(90deg, #057efc, #1633c6);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    padding: 10px 20px;
    transition: 0.3s ease-in-out;
}

.gradient-btn:hover {
    background: linear-gradient(90deg, #fe5900, #da4bd9);
    color: #fff;
    transform: translateY(-2px);
}
.payment-button {
    color: white !important;
    font-weight: 700 !important;
}
.cancel-button {
    background-color: black !important;
    color: white !important;
    font-weight: 700 !important;
}

.label-icon {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.label-icon i {
    color: #3b82f6; /* light blue accent */
    font-size: 17px;
}

.modern-input {
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #dce1ea;
    transition: all 0.2s ease-in-out;
}

.modern-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.3);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.price-box {
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 10px 0;
    margin-top: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.price-box i {
    color: #da4bd9;
    font-size: 1.1rem;
}


