.appointment-main {
  border: 8px #5A3527 solid;
  width: 75%;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  margin-top: 100px;
  flex-direction: column;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
}
.appointment-title {
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #3b2f2f;
  font-size: 40px;
  margin-bottom: 40px;
}
.appointment-navigation-holder {
  width: 100%;
  text-align: center;
}
.prev, .next {
  cursor: pointer;
  font-size: 36px;
}
.slide {
  width: 100%;
}
.services-grid  {
  display: grid;
  grid-template-columns: auto auto auto;
  row-gap: 30px;
  column-gap: 10px;
}
.appointment-choose-service {
  font-size: 30px;
}
.service-option, .date-option {
  padding: 10px 20px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  background-color: #5A3527;
  color: white;
  border-radius: 5px;
  transition: opacity, 0.15s;
  border: none;
}
.service-option:hover, .give-your-data button :hover, .date-option:hover, .give-your-data button:hover {
  opacity: 0.7;
}
.appointment-choose-time, .finalize-appointment-grid {
  display: grid;
  grid-template-columns: 50% 50%; 
  column-gap: 10px;
}
input[type="date"] {
  width: 100%;
  font-size: 16px;
}
.available-dates-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
} 
.available-dates-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  row-gap: 30px;
}
.give-your-data {
  display: flex;
  flex-direction: column;
}
.give-your-data div {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 20px;
}
.give-your-data button {
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  cursor: pointer;
  transition: opacity, 0.15s;
  border: none;
  background-color: #9D174D;
  color: white;
  font-weight: bold;
}
.input-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.input-holder div {
  font-size: 32px;
  font-weight: bold;
  text-align: start;
}
.input-holder div input {
  height: 32px;
  width: 100%;
}
