.calendar {
  width: 100%;
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 10px;
}

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

.day-name {
  text-align: center;
  font-weight: 500;
  font-size: 10px;
}

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

.day {
  width: 95px;
  height: 47px;
  font-weight: 500;
  font-size: 9px;
  background: #F9F9F9;
  cursor: pointer;
  border-radius: 5px;
  padding: 5px;
  transition: background-color 0.3s;
  position: relative;
}

.day.active {
  border: 1px solid #990B23;
  border-top: 2px solid #990B23;
}

.day:hover {
  background-color: #ddd;
}

.disabled {
  color: #ccc;
  cursor: not-allowed;
}


@media (max-width: 1024px) {
  .day {
    width: 100% !important;
    height: 40px !important;
  }

  .day-name {
    font-size: 9px;
  }
}

