/* Home Header Form CSS */
  
  .property-check-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    margin: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 1000px;
    gap: 10px;
  }
  
  .property-check-bar select {
    outline: none;
    padding: 12px 16px;
    flex: 1 1 180px;
    font-size: 16px;
    border-radius: 50px;
    color: #000;
    min-width: 160px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    margin:0;
  }
  
  .property-check-bar .divider {
    width: 2px;
    height: 45px;
    background-color: #7c7b86;
    margin: 0 10px;
  }
  
  .property-check-bar button {
    background-color: #66b2cc;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .property-check-bar button:hover {
    background-color: #5599aa;
  }
  
  .form-error-box {
        background-color: #f8d7da;
        color: #842029;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #f5c2c7;
        border-radius: 5px;
        font-size: 14px;
        position: absolute;
        top: 97%;
        right: 54%;
    }

  
  
  /* Tablet Devices: Smoothly stack elements if needed */
  @media (max-width: 992px) {
    .property-check-bar {
      justify-content: space-between;
    }
  
    .property-check-bar select {
      flex: 1 1 1;
    }
  
    .property-check-bar button {
      flex: 1 1 100%;
      margin-top: 10px;
    }
  
  }
  
  /* Mobile Devices */
  @media (max-width: 768px) {
    .property-check-bar {
      flex-direction: column;
      align-items: stretch;
      border-radius: 20px;
      padding: 20px;
    }
  
    .property-check-bar select,
    .property-check-bar button {
      width: 100%;
      flex: 1 1 100%;
    }
  
    .property-check-bar select {
      border: 1px solid #ccc;
    }
  
    .property-check-bar .divider {
      display: none;
    }
    
  .property-check-bar select::-ms-expand {
    display: none; /* Hide the default arrow in IE */
  }
  
  }
  