body {
  height: auto;
}
#timeSlotsContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 2 columns */
  gap: 10px;
}
#booking-loader .loader {
  top: 50%;
  left: 50%;
  position: fixed;
}
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 0.3s ease-in-out;
}

.booking-popup-content {
  text-align: center;
  position: relative;
  padding: 30px 40px;
  max-width: 500px;
  background: #4e73df;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: scaleUp 0.3s ease-in-out;
}

.booking-popup-content p {
  font-size: 20px;
  margin: 0;
}

.booking-popup-content .close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.col-form-label {
	text-align:left;
}

.booking-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #ffffff;
}

.calendar-section, .time-selection-section {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 300px;
  background-color: #ffffff;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.month-navigation button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 18px;
  color: #007bff;
  transition: color 0.3s ease;
}

.month-navigation button:hover {
  color: #0056b3;
}

.days-of-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-weight: bold;
  color: #666;
  margin-bottom: 5px;
  font-size: 14px;
  text-align: center;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.date-cell {
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
  background-color: #f2f2f2;
  transition: all 0.2s ease;
}

.date-cell:hover:not(.inactive):not(.booked) {
  background-color: #e96e7a;
  color: #fff;
}

.date-cell.selected {
  background-color: #bf1e2e;
  color: white;
  font-weight: bold;
}

.date-cell.inactive {
  color: #ccc;
  background-color: #f9f9f9;
  cursor: default;
}

.date-cell.booked {
  background-color: #ffdddd;
  color: #cc0000;
  font-weight: bold;
  cursor: not-allowed;
}

.time-slot-button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid #bf1e2e;
  background-color: white;
  color: #bf1e2e;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot-button:hover {
  background-color: #007bff10;
}

.time-slot-button.selected {
  background-color: #bf1e2e;
  color: white;
  font-weight: bold;
}

.confirm-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.confirm-button:hover {
  background-color: #218838;
}

.confirm-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.time-zone-info {
  margin-top: 10px;
  font-size: 0.85em;
  color: #888;
  text-align: center;
}

.selected-date-display {
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 16px;
  text-align: center;
  color: #333;
}

/* Booking form styling */
#booking_form {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px;
  width: 100%;
  margin-top: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: none;
}

#booking_form .form-control,
#booking_form .form-select {
  border-radius: 8px;
  font-size: 15px;
}

#booking_form label {
  font-weight: 600;
  margin-bottom: 6px;
}

#booking_form .text-danger {
  font-size: 13px;
}

#back_to_calendar {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 14px;
}

#back_to_calendar:hover {
  background-color: #5a6268;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #007bff, #00c6ff);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
  color: white;
  margin-bottom: 20px;
}

.calendar-header h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.calendar-header button {
  background-color: white;
  color: #bf1e2e;
  border: none;
  font-size: 20px;
  padding: 6px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.calendar-header button:hover {
  background-color: #bf1e2e;
  color: white;
  transform: scale(1.1);
}














.booking-container {
    max-width: 900px;
    margin:0px auto;
    padding: 20px;
    width: 100%;
}

.booking-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    padding: 20px;
}

.booking-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.booking-image {
    width: 250px;
    border-radius: 8px;
    object-fit: cover;
}

.booking-info h2 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #333;
}

.confirmed-status {
    font-weight: bold;
    color: #28a745;
}
.booking-actions {

}
.booking-actions button {
    background: #c8102e;
    color: #fff;
    border: none;
    padding: 10px 16px;
    margin-right: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 5px;
}
.booking-actions button:hover {
    background: #a50d24;
}

.booking-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.booking-button {
    flex: 1 1 150px;
    background: #f8f8f8;
    text-align: center;
    padding: 15px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.booking-button span {
    display: block;
    font-weight: normal;
    font-size: 12px;
    color: #666;
}

.booking-button:hover {
    background: #ececec;
}

.booking-section, .booking-location {
    margin-top: 20px;
}

.booking-location iframe {
    margin-top: 10px;
    border-radius: 8px;
    border: 0;
}
.booking-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}
.booking-location h3 , .booking-section h3 , .booking-info h2 {
  color: #bf1e2e !important;
  font-weight: bold;
  font-family: cookie, cursive;
}
.booking-section,
.booking-location {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .booking-section,
    .booking-location {
        flex: 1 1 48%;
    }
}


#prevMonth {
  background-image:url(../img/leftarrow2.png);
}
#nextMonth {
  background-image:url(../img/rightarrow2.png);
}
#prevMonth:hover {
  background-image:url(../img/leftarrow.png) !important;
}
#nextMonth:hover {
  background-image:url(../img/rightarrow.png) !important;
}
#prevMonth , #nextMonth {
  font-size:0 ;
  background-repeat:no-repeat !important;
  background-position: center !important;
  background-size: 12px !important;
  width: 40px;
  height: 40px;
}
.calendar-header button:hover {
  background-color: #333 !important;
}
.bkdetailsRt {
  margin-left: 10px;
}

.custdtl {
  margin: 0 0 10px 0;
}

.custphone {
  color: #bf1e2e !important;
  font-weight: bold;
  font-family: cookie, cursive; 
}


.custlogo {
  text-align: center;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px auto 0 auto;
}
.custlogo img {
  width: 150px;
}
.signinbtn a {
  background: #c8102e;
  color: #fff;
  border: none;
  padding: 10px 16px;
  margin-right: 10px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
}
.signinbtn a:hover {
  background: #a50d24;
  text-decoration: none;
}


@media only screen and (min-width :100px) and (max-width : 575px) {
  .page-id-34 #content-wrapper .container-fluid {
    padding: 0 !important;
  }
  .calendar-section, .time-selection-section {
    padding: 6px !important;
  }
  .date-cell {
    padding: 6px !important;
  }
}