/* Target the advanced search form container */
.wpbdp-search-form,
.wpbdp-form-search {  /* Adjust selector if needed by inspecting your page */
    background: #003366;  /* Dark blue background like old site */
    color: white;
    padding: 20px;
    border-radius: 8px;
}

/* Make checkboxes into a table/grid */
.wpbdp-search-form .wpbdp-form-field-checkboxes,
.wpbdp-search-form fieldset,
.wpbdp-search-form .form-fields {  /* Inspect to find exact classes */
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 columns; change to 4 if needed */
    gap: 15px 20px;
}

/* Style individual checkbox groups/labels */
.wpbdp-search-form label,
.wpbdp-search-form .wpbdp-field-checkbox {
    background: #004080;
    border: 1px solid #0066cc;
    padding: 10px;
    border-radius: 4px;
    text-align: left;
    font-size: 14px;
}

/* Hide default bullets or extra spacing */
.wpbdp-search-form ul,
.wpbdp-search-form li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Style the Search button */
.wpbdp-search-form input[type="submit"],
.wpbdp-search-form .button {
    background: #0066cc;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    margin: 20px auto 0;
    display: block;
}

/* Location/Radius and Venue Name fields */
.wpbdp-search-form input[type="text"],
.wpbdp-search-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #0066cc;
}

/* Add header text above form if needed */
.wpbdp-search-form::before {
    content: "Search for licensed venues across Australia";
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #00ccff;
}