#appointment-calendar {
  width: 500px; /* Same width as height for a box */
  /* height: 500px; */
  max-width: 100%; /* Make it responsive */
  height: 100%;
  margin: auto; /* Center the calendar */
  overflow: hidden;
  margin-bottom: 40px;
}

#appointment-calendar table > tr{
  background-color: #fff !important;
}

.ab-summary-container{
  margin-bottom: 40px !important;
}
.ab-font-heading{
  color: #26704b !important;
  font-size: 18px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #d1d1d1;
}
.ab-summary-label{
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgb(var(--btr-bfg) / .6);
}
.ab-summary-data{
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
  text-transform: capitalize;
}
.ab-price-total{
  border-top: 1px solid #d1d1d1;
  padding: 10px 0 0 0;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
.ab-confirm-data{
  text-transform:uppercase;
  font-size: 1.1rem;
}

.fc .fc-cell-shaded, .fc .fc-day-disabled {
    background-color: #fff;
}
table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
    background-color: #fff !important;
}
.fc {
  font-size: 14px !important; /* Keep text readable */
}
.fc-scroller {
    overflow: visible !important;
}
.fc-toolbar {
  padding: 5px !important;
}

.fc-daygrid-day-number {
  font-size: 14px !important;
}

.fc-event {
  font-size: 12px !important;
  padding: 3px;
}
.fc-daygrid-day-events{
  position: absolute;
  z-index: -10;
}

.service-schedule{
  font-size: 10px;
  color: #888;
  padding: 10px 0;
}
.note-booking{
  background-color:#e4eeff;
  font-size: 12px;
  padding: 10px;
  border-radius: 5px;
}
.note-booking p:empty{
  display:none;
}
/* .disabled-day >div>div:nth-child(1){
  pointer-events: none;   
  background-color: #FFC20A !important; 
  color: #999;             
  cursor: not-allowed;     
  visibility: hidden;
} */
.disabled-day >div{
  pointer-events: none;   
  background-color: rgba(255,194,10,0.3) !important; 
  color: #999;             
  cursor: not-allowed;     
}


.event-day > div{/* added mar 29 */
  background-color: #74fd74 !important; 
  /* color: #fff !important; */
}
.custom-day > div{
  background-color: #575757 !important;
  color: #ffcfcf !important;
}

.available-day >div>div:nth-child(1){
  background-color: blue !important; /* Light gray background similar to past dates */
  color: #999;             /* Gray text */
}

.day-white{
  background-color: #fff !important;
padding: 0 8px;
    border: 1px solid grey;
}
.day-red{
  background-color:red;
  padding: 0 8px;
    border: 1px solid grey;
}
.day-blue{
  background-color: #0C7BDC !important;
padding: 0 8px;
    border: 1px solid grey;
}
.day-grey{
  background-color: #d7d7d7 !important;
padding: 0 8px;
    border: 1px solid grey;
}
.day-yellow{
  background-color: rgba(255,194,10,0.3) !important;
  padding: 0 8px;
    border: 1px solid grey;
}
.day-green{
  background-color: #74fd74 !important;
  padding: 0 8px;
    border: 1px solid grey;
}
.day-black{
  background-color: #575757 !important;
  padding: 0 8px;
    border: 1px solid grey;
}
.time-slot {
  padding: 5px;
  margin: 5px 0;
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s;
  user-select: none; /* Prevent text selection */
  background-color: #f8f8f8;
  border: 1px dashed;
  width: 120px;
  font-size:14px;
  border-radius: 5px;
}

.time-slot.available {
  background-color: #f8f8f8;
}

.time-slot.available:hover {
  background-color: #e0e0e0;
}

.time-slot.selected {
  background-color: #007bff;
  color: white;
}
.time-slot.event-message{
  background-color: #575757;
  font-size:10px;
  color:#fff;
}
.time-slot.disabled {
  background-color: #dcdcdc;
  color: gray;
  pointer-events: none; /* Prevent clicking */
  cursor: not-allowed;
  text-decoration: line-through;
  display: none;
}
/* added mar 10  */
.timeslots-selection {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* one column for mobile */
  gap: 10px;
  justify-items: center;
}

@media (min-width: 768px) {
  .timeslots-selection {
    grid-template-columns: repeat(5, 1fr); /* three columns for tablet/desktop */
  }
  #cart-container{
  scroll-margin-top: 50px;
}
}

#cart-container{
  scroll-margin-top: 120px;
}
/* Basic styling for cart items */
.cart-item {
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 8px;
  margin: 4px;
  transition: background-color 0.3s, border-color 0.3s;
  background-color: #e6e6e6;
  max-width: 200px !important;
  width: 100%;
}

/* Hover effect for better user experience */
.cart-item:hover {
  background-color: #f5f5f5;
}

/* Style for the selected cart */
.cart-item.selected {
  border: 1px solid #26704b;        /* Blue border */
  background-color: #26704b;      /* Light blue background */
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);  /* Slight shadow */
  font-weight: bold;
}

/* Optional: Style for disabled cart items (if needed) */
.cart-item.disabled {
  background-color: #f2f2f2;
  color: #aaa;
  cursor: not-allowed;
}


.fc-day.fc-past {
  background-color: #f4f4f4 !important;
  color: #ccc !important;
  pointer-events: none;
}

.fc-day.fc-past .fc-day-number {
  color: #ccc;
}

.fc-day.fc-past:hover {
  background-color: #f4f4f4 !important;
}

/* extra service css */
.quantity-controls {
    display: inline-block;
    margin-left: 10px;
}

.quantity-controls button {
    padding: 2px 8px;
    cursor: pointer;
}

.quantity-controls input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
}


#service-list{
  display: flex;
  flex-wrap: wrap;
}
.service-item{
  max-width: 300px !important;
  height: auto;
  padding: 20px; 
  margin: 10px;
  box-sizing: border-box;
  /* border: 1px solid black; */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 10px;
}
.service-item:hover, .service-item:hover *, .service-item.selected, .service-item.selected *{
  background-color: #26704b;
  color: #fff;
  cursor: pointer;
}

.service-title{
  font-size: 18px;
}
.service-info{
  display: inline-flex;
  line-height: 1.25rem;
}
.service-price{
  background-color: grey;
  padding: 2px 10px;
  border-radius: 8px;
  color:#fff;
  margin-right: 10px;
}

.service-duration{
  margin-left: 5px;
  display:flex;
}
.service-duration>svg{
  fill:grey;
}
/* added feb 25 */
.service-category{
    margin-left: -20px;
    background-color: red;
    width: max-content;
    padding: 0 5px 0 20px;
    color: #fff;
    position: absolute;
    margin-top: 10px;
}

.service-item.disabled {
    opacity: 0.6;
    background-color: #f0f0f0;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}

.service-item.disabled::after {
    content: "For logged-in MEMBERS only";
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}
/* ---------------------------- */

.input-group {
  margin: 15px 0;
}

.input-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.input-group input {
  border: none !important; /* Remove the border */
  background-color: #f3f3f3; /* Make the background transparent */
  outline: none; /* Remove the outline on focus */
  font-size: inherit; /* Use the same font size as the surrounding text */
  font-family: inherit; /* Use the same font family as the surrounding text */
  color: inherit; /* Use the same text color as the surrounding text */
  width: 100%; /* Make the input take up the full width */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
  box-shadow: none; /* Remove any box shadow */
}
/* Style for read-only inputs to make them look even more like plain text */
.input-group input[readonly] {
    cursor: default; /* Change cursor to default */
    user-select: none; /* Prevent text selection */
    background-color: #f7f7f7;
    border-left: 2px solid rgb(192, 0, 0) !important;
}

.extra-service > label{
  margin-left:5px;
}

/* Plugin Container */
#plugin-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
    min-height: 800px;

}

/* Summary Section */
#summary {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 300px; /* Adjust as needed */
}

/* Form Section */
#appointment-form {
    flex: 2;
    min-width: 300px; /* Adjust as needed */
    overflow-y: scroll;
    min-height: 700px;
}

/* Target the specific element */
#appointment-form {
    border: 1px solid #ccc;
}

/* Style the scrollbar */
#appointment-form::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
}

/* Style the scrollbar track */
#appointment-form::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
    border-radius: 5px;
}

/* Style the scrollbar thumb */
#appointment-form::-webkit-scrollbar-thumb {
    background: #888; /* Scrollbar color */
    border-radius: 5px;
}

/* Style the scrollbar button (up and down arrows) */
#appointment-form::-webkit-scrollbar-button {
    background: #555; /* Button color */
    height: 10px; /* Button size */
}

/* Hover effect for the scrollbar thumb */
#appointment-form::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* Container for the form */
#appointment-form {
    position: relative;
    /* width: 100%; */
}

/* Style the tab buttons */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    display:flex !important;
    flex-direction: row;
}

.tab br {
  display: none;
}


.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

[data-nav="prev"],
[data-nav="next"] {
  padding: 10px 20px !important;
  font-size:14px !important;
  border: 1px solid rgb(255, 152, 0) !important;
}
[data-nav="prev"] {
  color: rgb(255, 152, 0) !important;
}
[data-nav="next"] {
  background-color: rgb(255, 152, 0) !important;
  color: #fff !important;

}

/* Style the tab content */
.tabcontent {
    position: absolute;
    top: 50px; /* Adjust based on your tab button height */
    left: 0;
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: white;
    z-index: 1; /* Default z-index for inactive tabs */
    opacity: 0; /* Hide inactive tabs */
    visibility: hidden; /* Hide inactive tabs */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tabcontent .form-nav-btn{
  position: sticky;
  bottom: 0;
  border-top: 1px solid #ccc;
  background-color: #fff;
  color: white;
  text-align: center;
  padding: 10px;
}

.tabcontent > p, .form-nav-btn, .terms-container{
  display: flex;
  margin-bottom: 10px;
}
.terms-container br{
  display:none;
}
.tabcontent button{
  margin: 0 5px 0 0;
  padding: 10px;
}

/* Default styles (for larger screens) */

/* Mobile devices (up to 768px) */
@media (max-width: 768px) {
    .tabcontent:nth-of-type(3){
      padding:5px;
    }
    .tablink:not(.active) {
        display: none;
    }

}


.tabcontent.active {
    z-index: 2; /* Higher z-index for the active tab */
    opacity: 1; /* Show active tab */
    visibility: visible; /* Show active tab */
}
.tablink{
  color: #afafaf !important;
}
.tablink.active {
    background-color: #26704b !important; /* Example: Blue background */
    color: #fff !important; /* White text */
}



/* Mobile Layout */
@media (max-width: 768px) {
    #plugin-container {
        flex-direction: column;
        flex-flow: column-reverse
    }

    #summary {
        order: -1; /* Move summary to the top */
        max-width: 100%;
    }
}


.fc .fc-daygrid-day-frame {
    min-height: 100%;
    position: relative;
    padding: 5px;
    box-sizing: border-box;
    margin: 5px;
    height: 55px;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    border-radius: 5px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    /* box-shadow: .625rem .625rem 1.875rem #c8d4e04d, -.625rem -.625rem 1.25rem #fff, inset .3125rem .3125rem 1.25rem #dae3eb; */
    /* box-shadow:  */
    /* Top-left outer shadow */
    /* -0.25rem -0.25rem 0.5rem rgba(255, 255, 255, 0.7), */
    /* Optional: subtle inner shadow */
    /* inset 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.15); */
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

/* admin booking list style */

.cust_info{
    width: 200px !important;
}

.status-done {
    color: #fff !important;
    padding: 5px !important; 
    box-sizing: border-box;
    background-color: green !important;
    border-radius:5px !important;
    text-transform: uppercase;
}
.status-cancel {
    color: #fff !important;
    background-color: red !important;
    padding: 5px !important; 
    box-sizing: border-box;
    border-radius:5px !important;
}
.status-pending {
    color: #fff !important;
    background-color: #dbdb16;
    padding: 5px !important; 
    box-sizing: border-box;
    border-radius:5px !important;
    text-transform: uppercase;
    
}
.status-deleted {
    color: gray !important;
    text-decoration: line-through !important;
    padding: 5px !important; 
    box-sizing: border-box;
    border-radius:5px !important;
}
.status-approved {
    color: #fff !important;
    background-color: blue !important;
    padding: 5px !important; 
    box-sizing: border-box;
    border-radius:5px !important;
}

/* input number in form  */
/* Remove spinner arrows in Chrome, Safari, Edge, and Opera for .quantity-input */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove spinner arrows in Firefox for .quantity-input */
.quantity-input {
    -moz-appearance: textfield;
    padding:10px;
}
.terms-container>label{
  font-size:0.75rem;
}

#submit_appointment{
  background-color: #26704B;
  color: #fff;
  border: 1px solid #26704B;
}




