body {
  font-family: "Mukta", sans-serif;
}

/* main container */
.main-container {
  max-width: 992px;
  margin: 0 auto;
}

/* Style for square container */
.square-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(1, 1fr);
}

/* Style for each square */
.square {
  position: relative;
  height: 90px;
  padding: 5px;
  border: 1px solid #aaa;
  text-align: center;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.square:hover {
  background-color: lightgray;
  /* Set background color when hovering */
}

/* Style for age and height */
.tithi,
.eng_day {
  position: absolute;
  bottom: 5px;
  font-size: 12px;
  color: #666;
}

.tithi {
  left: 5px;
}

.eng_day {
  right: 5px;
}

.eventOfTheDay {
  font-size: 12px;
  line-height: 1.2;
  white-space: normal;
  /* width: 19ch; */
  align-self: start;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dayOfMonth {
  font-weight: bold;
  font-size: 24px;
  margin-top: -24px;
}

.disabled {
  opacity: 0.3;
}

.weekRow {
  font-weight: bold;
  /* Set font weight to bold */
  display: grid;
  place-items: center;
  background-color: #eee;
  height: 40px;
}

.button-container {
  display: flex;
  /* Use flexbox to display buttons side by side */
}

.button {
  margin-right: 10px;
  min-width: 20px;
  padding-top: 10px;
  padding-bottom:10px;
}

select.current_month {
  min-width: 100px;
  font-weight: bold;
  color: black;
}

#navigation {
  display: flex;
  justify-content: space-between;
}
#weekNavigation {
  display: flex;
  align-items: center;
}

.isToday {
  /* color: white !important; */
  color: white;
  background-color: #2e7d32;
  pointer-events: none;

}

.holiday {
  color: red;
}
