body {
      background: #f5f7fa;
font-family: "Proxima Nova", sans-serif;
}
    .scheduler-container {
      margin: 40px auto;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .meeting-info {
      border-right: 1px solid #eee;
      min-height: 100%;
    }
    .meeting-info h4 {
      font-weight: 600;
      font-size: 28px;
    }
    .calendar-container h4 {
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: bold;
    }
    /* Datepicker overrides */
    .datepicker {
      width: 100%;
    }
    .datepicker table {
      width: 100%;
    }
    .datepicker table tr td, 
    .datepicker table tr th {
      width: 40px;
      height: 40px;
      text-align: center;
      border-radius: 50% !important;
    }
/*    .datepicker table tr td.active {
      background: #0066ff !important;
      color: #fff !important;
    }*/
    .datepicker table tr td.today {
      background: #e6f0ff !important;
    }
    .datepicker table tr td.day:hover {
      background: #dce9ff !important;
    }
    /*new code*/
       .datepicker table tr td.active {
      background: #0066ff !important;
      color: #fff !important;
    }
    .datepicker table tr td.today {
    background: #ffffff !important;
    color: #565353 !important;
  pointer-events: none; 
    position: relative;
font-weight: 100;   
    }
 
/* Add a small dot below the number */
.datepicker table tr td.today::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #0066ff;   /*dot color */
  border-radius: 50%;
  position: absolute;
  bottom: 4px;    /*adjust position */
  left: 50%;
  transform: translateX(-50%);
}
    
    
    /* Time slots */
    .time-slots h4 {
      margin-bottom: 20px;
      font-size: 16px;
      font-weight: 600;
    }
    .time-slot {
      display: flex;
      margin: 10px 0;
      gap: 10px;
    }
    .time-btn, .next-btn {
      flex: 1;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ddd;
      background: #fff;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s ease;
    }
    .time-btn {
      color: grey;
      border: 1px solid var(--primary-color-level2, rgba(0, 105, 255, 0.5));
    color: var(--primary-color, rgb(0, 105, 255));
        font-weight: bolder;
    }
    .time-btn:hover {
      background: #f0f5ff;
      border-color: #0066ff;
      color: #0066ff;
    }
    .time-btn.selected {
      background: #0066ff;
      color: #fff;
      border-color: #0066ff;
    }
    .next-btn {
      background: #0066ff;
      color: #fff;
      border: none;
      display: none; /* hidden by default */
          font-weight: bolder;
    }
    .time-slot.active .time-btn {
      flex: 1; /* half width when active */
    }
    .time-slot.active .next-btn {
      display: block; /* show next button */
      flex: 1; /* half width */
    }
    .time-slot:not(.active) .time-btn {
      flex: 1 0 100%; /* full width when not active */
    }
    #timeSlots{
        overflow:scroll;
        height: 410px;
        margin-top: 52px;
    }
    .time-slot.active .time-btn.selected {
    border-color: transparent;
    background-color: #00000099;
    color: #ffffff;
}

.datepicker table tr td{
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 50% !important;
    color: blue !important;
}
.datepicker table tr .th {
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 50% !important;
}
h4#selectedDateTitle {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
 .new{
        display: none;
    }
    .datepicker table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 4px;
}
    td.disabled .day{
        background: white !important;
    }
    .day{
        background: #e6f0ff !important;
        font-weight: bolder;
    }
    .datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
    background: #ffffff !important;
    color: #565353 !important;
    cursor: default;
    font-weight: 100;
}
    /*th.next {*/
/*  font-size: 30px;    adjust size 
  font-weight: bold;  optional 
  background-color: #e6f0ff;*/
    /*display: none;*/
/*}*/
    /*th.prev {*/
/*  font-size: 30px;    adjust size 
  font-weight: bold;  optional 
    background-color: #e6f0ff;*/
    /*display: none;*/

/*}*/
/* Prev/Next button styles */
/* Style for Previous button */
/* Remove default arrow text */
.datepicker .prev,
.datepicker .next {
  font-size: 0 !important;   /* hides the built-in « and » */
}

/* Custom Previous button */
.datepicker .prev:before {
  content: "‹" !important;
  font-size: 35px !important;
  color: #333 !important;
  padding: 6px 10px !important;
  border-radius: 50% !important;
  transition: all 0.2s ease !important;
  font-weight: 100;
}

/* Custom Next button */
.datepicker .next:before {
  content: "›" !important;
  font-size: 35px !important;
  color: #333 !important;
  padding: 6px 10px !important;
  border-radius: 50% !important;
  transition: all 0.2s ease !important;
  font-weight: 100;
}

/* Hover effect */
.datepicker .prev:hover:before,
.datepicker .next:hover:before {
  /*background: #f0f5ff !important;*/
  color: #0066ff !important;
  cursor: pointer !important;
}

.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
     background: #ffffff !important;
}