:root {
  --primary: #3c50e0;
  --white: #fff;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
}

.react-calendar {
  width: 100%;
  border: none;
  border: 1px solid var(--gray-200);
  background-color: var(--white);
  border-radius: 7px;
  line-height: 1.125em;
}

.react-calendar__navigation {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.react-calendar__navigation button {
  background: none;
  border: none;
  font-size: 1rem;
  color: #333;
  text-transform: capitalize;
}

.react-calendar__month-view__weekdays {
  text-align: center;
  text-transform: lowercase;
  font-weight: bold;
  font-size: 0.8em;
  color: #999;
  border: 1px solid var(--gray-200);
}

.react-calendar__month-view__weekdays__weekday {
  padding: 0.5em;
}

.react-calendar__month-view__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.react-calendar__tile {
  background: none;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid var(--gray-200);
  color: #333;
  height: 40px;
  /* border-radius: 5px; */
}

.react-calendar__tile:hover {
  background-color: #e5e7eb;
}

.react-calendar__tile--active {
  background-color: #e5e7eb;
  color: var(--primary);
}

.react-calendar__tile--now {
  background-color: var(--primary);
  color: var(--white);
  /* border-radius: 999px; */
}

.react-calendar__tile--now:hover {
  background-color: var(--primary);
}

.react-calendar__tile.range-edge {
  background-color: #3498db;
  color: var(--white);
  overflow: visible;
}

.react-calendar__tile.in-range {
  border: 1px solid;
  border-color: var(--gray-200);
  overflow: visible;
}

.react-calendar__tile.single-date {
  background-color: #3498db;
  color: white;
  font-weight: bold;
}

.react-calendar__month-view__days__day--neighboringMonth {
  color: #ef4444;
}

.react-calendar__navigation__label {
  font-size: 18px;
  font-weight: bold;
}

.react-calendar__navigation__prev2-button,
.react-calendar__navigation__next2-button {
  display: none;
}