.disable_continue_btn {
  background-color: gray;  /* Sets the background to gray */
  cursor: not-allowed;     /* Changes the cursor to indicate it's disabled */
  pointer-events: none;    /* Disables all interactions */
  opacity: 0.5;           /* Makes the button semi-transparent */
}
.the_tooltips{
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #6d6d6d;
  color: #fff;
  cursor: help;

}
.busy {
  background: #02344f;
  color: white;
  opacity: 0.5;
  pointer-events: none; /* Disables all click, hover, and focus events */
  cursor: not-allowed; /* Shows a "not allowed" cursor */
}

.busy {
  background: #02344f;
  pointer-events: none; /* Disables all click, hover, and focus events */
  cursor: not-allowed; /* Shows a "not allowed" cursor */
}

.day.available-date.active {
  background-color: #f3c1c2;
  color: white;
}
.set_disabled {
  cursor: not-allowed;     /* Changes the cursor to indicate it's disabled */
  pointer-events: none;    /* Disables all interactions */
  filter: blur(2px);       /* Applies a blur effect instead of opacity */
}

.cr_disabled {
  pointer-events: none; /* Disables clicking */
  cursor: not-allowed;  /* Shows a "not allowed" cursor */
  opacity: 0.5;         /* Makes it look visually disabled */
  background-color: gray;
}
.disabled-day {
  pointer-events: none!important;
  color: #ccc!important;
  background-color: #f2f2f2!important;
  cursor: not-allowed!important;
}
/*
.btn-outline-info{
  display: none!important;
} */