.appointment-title {
  font-size: 20px;
  padding-top: 100px !important;
  font-weight: 700;
  text-align: center;
  color: #0b4dbf;
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.appointment-title::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: #0b4dbf;
  margin: 10px auto 0;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.appointment-title:hover::after {
  width: 70%;
}
@media (max-width: 768px) {
  .appointment-title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .appointment-title {
    font-size: 18px;
  }
}
.appointment-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  min-height: auto;
  border-left: 2px solid #0b4dbf;
  border-right: 2px solid #0b4dbf;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;

  position: relative;
  overflow: hidden;
}
.appointment-form::before,
.appointment-form::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid #0b4dbf;
}
.appointment-form::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.appointment-form::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
.appointment-form span.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid #0b4dbf;
}
.appointment-form .corner.tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
.appointment-form .corner.bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
.traditional-input {
  border: 1.5px solid #ccc;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}
.traditional-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
  outline: none;
}
.form-label {
  color: #333;
  margin-bottom: 5px;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.table-wrapper {
  border-radius: 10px;
  overflow: hidden;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered {
  border: none;
}
@media (max-width: 768px) {
  .responsive-table thead {
    display: none; /* Hide header */
  }
  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }
  .responsive-table tr {
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 10px;
  }
  .responsive-table td {
    text-align: left;
    padding-left: 0;
    position: relative;
    border: none;
    margin-bottom: 10px;
  }
  .responsive-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
  }
  .responsive-table td:last-child {
    margin-bottom: 0;
  }
}
#clinicTable,
#homeTable {
  display: none;
}
.service-checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  background: #fff;
  transition: 0.25s ease;
}

.service-item:hover {
  border-color: #0d6efd;
  background: #f8f9fa;
}

.service-item input[type="checkbox"] {
  accent-color: #0d6efd;
  transform: scale(1.1);
}
.appintment-btn button {
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  float: right;
  padding: 10px 22px;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 7px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(13, 110, 253, 0.35);
  transition: all 0.3s ease;
}
/* Active click */
.appintment-btn:active {
  transform: scale(0.96);
}