.therapist-card {
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .therapist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }
  .therapist-card.selected {
    border: 2px solid #0d6efd;
    box-shadow: 0 0 10px rgba(13,110,253,0.4);
  }
  .therapist-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 15px;
  }

/* Service Card */
.service-card {
  border-radius: 16px;
  padding: 4px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Image Placeholder */
.image-placeholder {
  height: 120px;
  width: -webkit-fill-available;
  background-color: #d1d5db;
  border-radius: 8px;
  margin: 0 auto 16px;
}

/* Text Styles */
.service-title {
  font-size: 18px;
  font-weight: 600;
  color:rgb(43, 25, 25);
  text-align: justify;
}

.service-desc {
  font-size: 14px;
  text-align: justify;
}
.servicesid{
    background: white;
    padding: 3px;
    border-radius: 4px;
}

  /* --- Modal Styling --- */
  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
  }

  .close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover {
    color: #000;
  }

  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
  }

  .displayinfo{
    text-align:center
  }



  /* Background */
  .booking-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  /* Card */
  .booking-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* max-width: 950px; */
  }

  /* Inputs */
  .fancy-input {
    border-radius: 12px;
    border: 1.5px solid #dee2e6;
    transition: all 0.3s ease;
    background-color: #fdfdff;
  }
  .fancy-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
  }

  /* Buttons */
  .btn-gradient {
    background: linear-gradient(90deg, #ff8a00, #ffb300);
    border: none;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #fff;
  }
  .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.3);
  }

  /* Time buttons */
  #time-slots button {
    min-width: 110px;
    border-radius: 12px;
    background-color: #fff;
    color: black;
    transition: all 0.25s ease;
    font-size: smaller;
    padding: 8px;
  }

  #time-slots .btn-time:hover {
    background-color: #0d6efd;
    color: #fff;
    
  }

  #time-slots .btn-time.active {
    background-color: #0d6efd;
    color: #fff;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
  }

  #time-slots .btn-time:disabled {
    border-color: #ccc;
    background-color: #f0f0f0;
    color: #999;
    cursor: not-allowed;
  }

  @media (max-width: 768px) {
    .booking-card {
      padding: 1.5rem;
    }
    #time-slots button {
      font-size: 0.9rem;
      min-width: 90px;
    }
  }