/* Button styling */
#open-form-btn {
    /* padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px; */
    cursor: pointer;
  }
  
  /* #open-form-btn:hover {
    background-color: #45a049;
  } */
  
  /* Popover styles */
  /* Popover styles */
.popover {
    display: none; /* Hidden by default */
    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;
    overflow: auto;
  }
  
  .popover-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    position: relative;
  }
  
  .popover-content h2 {
    margin-top: 0;
    margin-bottom: 0;
    color: black;
  }
  
  /* Form layout */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  input, select, textarea, .enquiry-button {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
  }
  
  /* Button styles */
  .enquiry-button {
    background-color: rgb(35, 98, 35);
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  
  .enquiry-button:hover {
    background-color: #45a049;
  }
  
  /* House builder question visibility */
  #house-builder-question {
    margin-top: 10px;
  }

  .popover-content p {
    margin: 0;
    color: black;
  }

  .close-btn {
    float: right;
    font-size: 24px; /* Adjust size if needed */
    cursor: pointer;
  }

  /* Style radio buttons */
input[type="radio"] {
    width: 25%; /* 25% width for radio buttons */
  }
  
  /* Optional: Style the radio group for better alignment */
  .radio-group {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  