/* Container that holds the input and select */
/* Center the form wrapper */
.lookup-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  

#patientLookupForm {
    width: 50%;
    min-width: 100px;
    max-width: 100%;
    margin: 0 auto;               /* Center horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;         /* Center child elements like inputs/buttons */
  }
  


.therapist-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 15px;
  }
  
  /* Search bar styling */
  #address-input {
    width: 100%;
    max-width: 100%;       /* Let it take full width of the container */
    font-size: 18px;        /* Bigger text */
    padding: 10px;          /* More padding inside */
    border: 2px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }


  .form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin-bottom: 15px;
    gap: 20px;
  }
  
  .form-row label {
    width: 100px;
    font-weight: bold;
    font-size: 16px;
    text-align: left;
  }
  
  .form-row select {
    flex-grow: 1;
    font-size: 16px;
    padding: 5px;
    border-radius: 6px;
    border: 2px solid #ccc;
    box-sizing: border-box;
  }
  
  
  
  /* Optional: Style the button */
  .get-info-btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
  }
  
  .get-info-btn:hover {
    background-color: #0056b3;
  }
  