/* Modern Calendar Styles with specificity to override claro theme */
.modern-calendar-container {
  font-family: "Roboto", sans-serif;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.modern-calendar {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e0e0e0;
  margin-top: 15px;
}

.modern-calendar .calendar-header {
  padding: 15px;
  background-color: #255799;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modern-calendar .month-year {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-align: center;
  flex-grow: 1;
}

.modern-calendar .calendar-nav {
  display: flex;
  align-items: center;
}

.modern-calendar .nav-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.2s;
}

.modern-calendar .nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.modern-calendar .today-btn {
  font-weight: 500;
}

.modern-calendar .calendar-grid {
  padding: 10px;
}

.modern-calendar .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 500;
  color: #6c757d;
  font-size: 12px;
  margin-bottom: 10px;
}

.modern-calendar .calendar-weekdays div {
  padding: 5px 0;
}

.modern-calendar .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 5px;
}

.modern-calendar .calendar-day {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  color: #212529;
}

.modern-calendar .calendar-day:hover:not(.disabled):not(.prev-month-day):not(.next-month-day) {
  background-color: #e9ecef;
}

.modern-calendar .calendar-day.today {
  background-color: #FECC07;
  color: #1B3D6D;
  font-weight: bold;
}

.modern-calendar .calendar-day.selected {
  background-color: #255799;
  color: white;
}

.modern-calendar .calendar-day.disabled {
  color: #adb5bd;
  cursor: not-allowed;
}

.modern-calendar .prev-month-day,
.modern-calendar .next-month-day {
  color: #ced4da;
  cursor: default;
}


#datacal {
  display: none !important;
}

.dijitCalendarContainer {
  display: none !important;
}