

/* CLNR */

.clndr-controls {
  display: flex;
  justify-content: space-between;
  background-color: #f39c12; 
  color: #fff;
  padding: 10px;
  padding-left: 70px;
  padding-right: 70px;
  border-radius: 6px 6px 0 0;
  height: 56px;
  font-size: 18px;
  cursor: default !important;
}
@media (max-width: 375px) {
  .clndr-controls {
    display: flex;
    justify-content: space-between;
    background-color: #f39c12; 
    color: #fff;

    border-radius: 6px 6px 0 0;
    height: 35px;
    font-size: 12px;
  }
}



.event-indicator {
  display: none;
  width: 8px;
  height: 8px;
  background-color: #c0392b;
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}



.clndr-controls .month {
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 375px) {
  .clndr-controls .month {
    font-weight: bold;
    font-size: 12px;
  }
  
}


.clndr-controls button {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 375px) {
  .clndr-controls .button {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    /* cursor: pointer; */
    font-weight: bold;
  }
  
}

.headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  color: #232026;

}
.days {
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}

.day-header {
  padding: 5px 0;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #232026;
  /* background-color: #fdf0f0; */
  display: grid;
  border-right: 0.5px solid #d2d2d2;
  border-bottom: 0.5px solid #d2d2d2;
  border-top: #fff;
}
@media (max-width: 375px) {
  .day-header {
    padding: 10px 10px; 
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    color: #232026;
    border-right: 0.5px solid #d2d2d2;
    border-bottom: 0.5px solid #d2d2d2;
    display: grid;
  }
}


.days-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day {
  padding: 15px 15px;
  text-align: center;
  cursor: default;
  border-right: 0.6px solid #d2d2d2;
  border-bottom: 0.5px solid #d2d2d2;
  position: relative;
}
@media (max-width: 375px) {
  .day {
    padding: 10px 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    font-size: 10px;

  }
}

.clndr .day.today-class {
  background-color: rgba(255, 120, 0, 1) !important;
  font-weight: bold !important;
  color: #fff !important;
}

.day.today {
  background-color: rgba(255, 120, 0, 1); 
  font-weight: bold;
  color: #fff;
}

/* .day:hover {
  background-color: #f0f8ff;
} */

.day.event {
  background-color: rgba(249, 159, 51, 0.5); 
  color: #232026;
}

.event-indicator {
  width: 8px;
  height: 8px;
  background-color: #c0392b;
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}


.headers .day-header:first-child { 
  background-color: rgba(210, 0, 21, 1); 
  color: white;
}

.headers .day-header:nth-child(7) { 
  background-color: #0058A7; 
  color: white;
}





