  .calendar-container {
      max-width: 420px;
      margin: 30px auto;
      /* border: 1px solid #ccc; */
      padding: 20px;
      border-radius: 8px;
  }
  
  .selectors {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
  }
  
  .calender-select {
      padding: 8px;
      font-size: 16px;
  }
  
  .calender-select {
      flex: 1;
  }
  
  button {
      cursor: pointer;
  }
  
  #reset-selection {
      flex: 0 0 auto;
  }
  
  .nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
  }
  
  #calendar-title {
      font-weight: bold;
  }
  
  .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      text-align: center;
  }
  
  .calendar-grid div {
      padding: 10px 0;
      /* border: 1px solid #e0e0e0; */
      user-select: none;
  }
  
  .calendar {
      padding: 1rem;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      width: 100%;
  }
  
  .day-name {
      font-weight: bold;
      background-color: #f5f5f5;
      cursor: default;
  }
  
  .past-date {
      color: #aaa;
      /* background-color: #f0f0f0; */
      cursor: not-allowed;
  }
  
  .today-date {
      background-color: #007bff;
      color: white;
      font-weight: bold;
  }
  
  .in-range {
      background-color: #faefbc;
      /* Light Blue */
      color: #000;
      border-radius: 0;
  }
  
  .red-marked {
      background-color: #fa000094!important;
      color: white;
  }
  
  .disabled {
      color: #ccc;
      /* background: #eee; */
      cursor: not-allowed;
  }
  
  .selected-start,
  .selected-end,
  .red-marked.selected-start {
      background-color: #ffd000;
      /* Blue */
      color: white;
      font-weight: bold;
  }
  
  .calendar-icon-btn {
      height: 40px;
      width: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white;
      padding: 0.5rem;
      border: none;
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 4px 0px;
      border-radius: 0.5rem;
  }
  
  .calendar-icon-btn:hover {
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 10px 0px;
  }
  
  .calendar-icon-btn svg {
      color: rgb(47, 47, 47);
  }
  
  .slots-clr-box {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }
  
  .slot-box {
      display: flex;
      gap: 1rem;
      font-size: 1rem;
      align-items: center;
  }
  
  .slot-box span {
      width: 20px;
      height: 20px;
  }
  
  .bg-green {
      background-color: rgb(123, 208, 123);
  }
  
  .bg-red {
      background-color: rgb(202, 101, 101);
  }
  
  .bg-yellow {
      background-color: rgb(255, 238, 0);
  }
  
  .bg-blue {
      background-color: rgb(32, 51, 255);
  }
  
  .bg-grey {
      background-color: #a2a2a2;
  }