
body {
        padding-top: 80px; 
    background: #fdfeff;
    font-family: 'Segoe UI', sans-serif;
}

.banner-image {
    max-width: 2500px;          
    width: calc(100% - 40px);    
    height: 390px;
    margin: 5px 20px;          
    overflow: hidden;
    border-radius: 8px;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.banner-image img {
    width: 100%;  
    height: 100%;
    object-fit: cover;
    display: block;
}

.booking-page {
    display: flex;
    justify-content: flex-start;
    padding: 40px 20px;
}

.booking-card {
    background: #fff;
    width: 100%;
    max-width: 1050px;
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* HEADER */
.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.service-location {
    margin-top: 6px;
    color: #6b7280;
    font-size: 14px;
}

.service-location i {
    margin-right: 6px;
}

.direction-btn {
    background: #eef4ff;
    color: #2563eb;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* BOOK SERVICE */
.book-service-card {
    margin-top: 24px;
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px;
    border: 1px solid #e5e7eb;
}

.book-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-top h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.slot-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.slot-duration {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.price-text {
    font-size: 26px;
    font-weight: 700;
}

hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 20px 0;
}

/* DATE SECTION */
.date-title {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calendar-box {
    margin-top: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
}
/* ===== CALENDAR CARD ===== */
.calendar-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-top: 18px;
}

/* Header */
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 6px 18px;
}

.calendar-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.cal-nav {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #374151;
}

/* Weekdays row */
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 10px;
}

/* Days grid */
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

/* Each day */
.calendar-day {
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover */
.calendar-day:hover {
    background: #f3f4f6;
}

/* Selected */
.calendar-day.selected {
    background: #2563eb;
    color: #fff;
    font-weight: 600;
}

/* Empty filler cells */
.calendar-days > div:empty {
    pointer-events: none;
}


.calendar-btn-container {
    margin-top: 15px;
    text-align: center; 
}

#viewSlotsBtn {
  width: 100%;
  display: block;
}

.modal {
        position: fixed;
        z-index: 9999;
        left: 0; top: 0;
        width: 100%; height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.4);
    }
    .modal-content {
        background-color: #fefefe;
        margin: 10% auto;
        padding: 20px;
        border-radius: 8px;
        width: 90%;
        max-width: 450px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        position: relative;
    }
    .close {
        position: absolute;
        right: 12px;
        top: 10px;
        font-size: 28px;
        font-weight: bold;
        color: #aaa;
        cursor: pointer;
    }
    .close:hover {
        color: #000;
    }
    .slot-item {
        padding: 8px 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        background-color: #f0f0f0;
        cursor: pointer;
        user-select: none;
        margin-bottom: 8px;
        transition: background-color 0.3s;
    }
    .slot-item:hover {
        background-color: #d6eaff;
    }
    .selected-slot {
        background-color: #007bff;
        color: white;
        border-color: #0056b3;
    }

    #slotsContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.slot-item {
  border: 1px solid #c3e6cb;
  background-color: #d4edda;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: #2a6a2a;
  transition: background-color 0.2s ease;
}

.slot-item.selected {
  background-color: #a8d5a3;
  border-color: #7cb67e;
}

    .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  padding: 10px 0;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

.calendar-day:hover {
  background-color: #cce5ff;
}

.calendar-day.selected {
  background-color: #0d6efd;
  color: white;
}

.calendar-day.blank {
  cursor: default;
  background: none;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .booking-card {
        padding: 20px;
    }

    .book-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .price-text {
        align-self: flex-end;
    }
}