/* Styling for the contact form popup overlay */
.overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 10; /* Above other content but below the popup */
  }
  
  /* Styling for the contact form popup box */
  .popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the popup */
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 11; /* On top of the overlay */
    width: 80%; /* Responsive width */
    max-width: 500px; /* Maximum width */
  }
  
  /* Styling for the close button */
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
  }
  
  /* Styling for the form inputs */
  .input-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Makes padding and border included in the element's total width and height */
  }
  .input-field-drop {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      box-sizing: border-box; /* Makes padding and border included in the element's total width and height */
  }
  
  /* Styling for the submit button */
  .submit-btn {
    background-color: #007bff; /* Bootstrap primary color */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
  }
  
  .submit-btn:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
  }
  
  #message {
    color: green;
    margin-top: 10px;
    display: none; /* Hidden by default */
}