
.calendar-container {
  background: white;
  border-radius: 10px;
  max-width: 925px;
  position: relative;
}

.container-calender{
  margin-top: 50px;
  margin-bottom: 50px;
}

.left-header-calender{
  gap: 32px;
}
.month-dropdown{
  gap: 8px;
}

.rotate-icon-calender {
  transition: transform 0.3s ease;
}

.rotate-icon-calender.rotated {
  transform: rotate(180deg);
}

.search-calender {
  border: 1px solid #D1D1D1;
  width: 100%;
  max-width: 564px !important;
  background: #F0F0F0;
}

.search-icon-calender{
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
}

#calender-input-search {
  border: none;
  text-decoration: none;
  background: #F0F0F0;

}

#calender-input-search:focus {
  box-shadow: none !important;
  outline: none !important;
}


.calendar-header {
  align-items: center;
  margin-bottom: 56px;
}
.days-header,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}

.calendar-days div {
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
}

/* .event-list {
  margin-top: 20px;
  max-width: 290px;
  width: 100%;
  width: 290;
  gap: 328px;
  border-radius: 10px;
  background: #f7f7f7;
} */

.icon-chevron-calender{
  text-shadow: 1px 0 currentColor;

}
#monthYear {
  cursor: pointer;
  position: relative;
  font-size: 24px;
}

#monthPicker {
  display: none;
  border: none;
  gap: 5px;
  box-shadow: 0px 11px 22px -3px #0000001A;
  
}

.month-picker {
  position: absolute;
  top: 40px;
  left: 14%;
  background: white;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 5p x;
  text-align: center;
}

.month-picker button {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
}

.month-picker button:hover {
  background: #9dbbdc;
  /* border-radius: 20%; */
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.custom-calendar {
  width: 925px;
  max-width: 100%;
}

.custom-event {
  width: 290px;
  max-width: 100%;
  background: #F7F7F7;


}

.calendar-days div {
  width: 100%;
  height: 110px;
  padding: 0;
  font-size: 20px;
  background: #dadada;
  ;
  border: none;
}
.button-rev-prev-container {
  gap: 10px;
}
.button-rev-prev-container button {
  border-radius: 50%;
  background: #36649a;
  color: white;
  border: none;
  padding: 10px;
  width: 44px;
}

.calendar-header h2 {
  font-size: 24px;
}

.event-marker {
    position: absolute;
    bottom: 30%;
    left: 1% !important;
    width: 100% !important;
    height: 20% !important;
    font-size: 14px !important;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1) ; /* Warna default */
    font-weight: bold;
    border-radius: 2px!important;

}

@media (max-width: 1200px) {
  .custom-row {
    flex-direction: column;
    align-items: center;
  }

  .days-header {
    gap: 5px;
  }

  .calendar-days div {
    width: 100%;
    height: 100px;
    font-size: 16px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .calendar-days div {
    width: 100%;
    height: 60px;
    font-size: 14px;
  }
}
