#calendar {
  width: 100%;
  padding: 10px;
}

.herder_celendar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 10px;
}

.week {
  display: flex;
  cursor: pointer;
}

.activate {
  border: 2px solid #354da3;
  border-radius: 2px;
}

#month_name {
  padding: 5px;
  margin: 0px;
  font-size: 16px;
}

#month {
  display: flex;
  justify-content: center;
  flex-direction: column;

}

.day {
  padding-top: 5px;
  width: 14%;
  height: 33px;
  display: flex;
  justify-content: center;
  font-size: 13px;
  margin: 1px;
  background-color: #ffffff;
  cursor: pointer;

}

.title_date {
  padding-top: 5px;
  width: 14%;
  height: 33px;
  display: flex;
  justify-content: center;
  font-size: 13px;
  margin: 1px;
  background-color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  color: #354da3;
  border-top: 2px solid #354da3;
}

#customer_info_div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.servide_info {
  margin-top: 20px;
}

.next {
  cursor: pointer;
  padding: 10px;
  border-radius: 25%;
}

.next:hover {
  background-color: #e6e6e6f1;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}