@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
}
a {
  text-decoration: none;
  color: #f1f1f1;
}
.m-headers {
  color: #404040;
  font-size: 14px;
}
.s-headers {
  color: #1f4276;
  font-size: 32px;
}

/*Book Appointment*/
.book-appointment-container {
  padding-top: 5rem;
}
.book-appointment {
  width: 1000px;
  min-height: 175px;
  position: fixed;
  margin-top: 2rem;
  margin-left: 26rem;
}

.appointment {
  color: #1f4276;
}

/*Select Service*/
.select-service {
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 20px;
  width: 450px;
  height: 120px;
  position: fixed;
  margin-top: 190px;
  left: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align items at the start */
  align-items: flex-start; /* Align items at the start */
}

.service-label {
  color: #003459;
  font-weight: bold;
  margin-bottom: 10px; /* Add spacing between label and buttons */
}

.button-container {
  display: flex;
}

.medical-certificate {
  margin-left: 10px;
}

.select-service button {
  background-color: transparent;
  border: none;
  color: #003459;
  background-color: white;
  border-radius: 8px;

  padding: 20px 50px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid #9ebac7;
  font-size: 14px;
  font-weight: 500;
}

.select-service button:hover {
  background-color: #003459;
  color: #fff;
}

.select-service button.selected {
  background-color: #003459;
  color: #fff;
}

/*Select Date*/
.calendar {
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 20px;
  width: 450px;
  height: 220px;
  position: fixed;
  margin-top: 370px;
  margin-left: 25rem;

  align-items: center;
  flex-wrap: wrap;
}

.calendar-container {
  display: flex;
  flex-direction: column;
}

.days {
  display: flex;
}

.days div {
  flex: 1;
  margin-top: 10px;
  padding: 0 10px;
  font-weight: 600;
}

.dates {
  display: flex;
  flex-wrap: wrap;
}

.date {
  width: calc(100% / 7);
  text-align: center;
  padding: 7px 0;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 0.5rem;
}

.date:hover {
  background-color: #003459;
  color: #fff;
}

.date.selected {
  background-color: #003459;
  color: #fff;
}

/*Time Slots*/
.time-slots {
  background-color: #f1f1f1;
  padding: 20px;
  height: auto;
  width: 450px;
  border-radius: 15px;
  position: fixed;
  margin-top: 190px;
  left: 910px;
}

.slots-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slot-text {
  margin: 0.5rem 10px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
}

.time-col-one button {
  background-color: transparent;
  border: none;
  color: #003459;
  background-color: white;
  border-radius: 5px;

  width: 100px;
  height: 40px;

  margin-left: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid #9ebac7;

  font-size: 14px;
  font-weight: 500;
}

.time-col-two button {
  background-color: transparent;
  border: none;
  color: #003459;
  background-color: white;
  border-radius: 5px;

  width: 100px;
  height: 40px;

  margin: 1rem 0;
  margin-left: 5px;

  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid #9ebac7;

  font-size: 14px;
  font-weight: 500;
}

.time-slots button:last-child {
  margin-right: 0;
}

.time-slots button:hover {
  background-color: #003459;
  color: #fff;
}

.time-slots button.selected {
  background-color: #003459;
  color: #fff;
}

/* About Appointment */
.about-appointment {
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 20px;
  width: 450px;
  position: fixed;
  margin-top: 435px;
  left: 910px;
}

.about-container p {
  margin-bottom: 10px;
}

/* Action Buttons */
.confirmation-action-buttons {
  left: 400px;
  position: fixed;
  margin-top: 570px;
  display: flex;
  border-color: transparent;
}

.action-buttons {
  left: 1200px;
  position: fixed;
  margin-top: 630px;
  display: flex;
  border-color: transparent;
}

.cancel-container,
.submit-container {
  display: inline-block;
}

.go-back-button,
.cancel-button,
.confirm-button,
.next-button {
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.cancel-button {
  background-color: #ff4564;
  border-radius: 4px;
  color: #f1f1f1;
  font-weight: 500;
  font-size: 16px;
}

.go-back-button {
  background-color: #6f6f6f;
  border-radius: 4px;
  color: #f1f1f1;
  font-weight: 500;
  font-size: 16px;
}

.go-back-button:hover {
  background-color: #002e4f;
  color: #f1f1f1;
}

.confirm-button,
.next-button {
  background-color: #44a058;
  border-radius: 4px;
  margin-left: 10px;
  color: #f1f1f1;
  font-weight: 500;
  font-size: 16px;
}

.cancel-button:hover {
  background-color: #b71d37;
  color: #ffffff;
}

.confirm-button:hover,
.next-button:hover {
  background-color: #266b35;
  color: #ffffff;
}
.about-service {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  color: #002e4f;
}
.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 0.5rem;
}

.service strong {
  color: #002e4f;
}

.month-year {
  margin-right: 1.3rem;
  font-weight: 600;
  color: #002e4f;
}

.process-states {
  width: 20px;
  padding: 0.5rem;
}

.about-text-paragraph {
  padding: 0 2rem;
  font-size: 14px;
  color: #6f6f6f;
}

.a-date-cont {
  display: flex;
}

/* Popup Modal Styles */
.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.popup-content strong {
  font-size: 25px;
  display: block;
  margin-bottom: 20px;
}

.popup-buttons {
  margin-top: 20px;
}

.confirm-button,
.cancel-button {
  margin: 5px;
  padding: 10px 20px;
}

.confirm-button {
  background-color: #44a058;
  color: white;
}

.cancel-button {
  background-color: gray;
  color: white;
}
