.park-search-layout {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .park-search-layout {
        flex-direction: column;
        flex-wrap: wrap;
    }
}

.park-filters-sidebar {
    flex: 1 1 300px;
    max-width: 300px;
}

@media (max-width: 768px) {
    .park-filters-sidebar {
        max-width: 100%;
    }
}

.park-results-area {
    flex: 2 1 600px;
}

.park-result {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.park-result img {
    max-width: 120px;
    height: auto;
    margin-right: 1rem;
}

.park-result h2 {
    margin: 0 0 0.5rem;
}

.park-result a {
    text-decoration: none;
}

fieldset {
    margin-bottom: 1.5rem;
}

legend {
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.accordion {
/*     border-bottom: 1px solid #1a7245; */
    margin-bottom: 1rem;
}

.accordion-toggle {
    display: flex;
    width: 100%;
    text-align: left;
	color: #fff;
    background: #1a7245;
    border: none;
    padding: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
	justify-content: space-between;
}

/* Add the Font Awesome down arrow icon */
.accordion-toggle::after {
    font-family: "Font Awesome 6 Free"; /* Or 5 if you're using FA5 */
    content: "\f078"; /* fa-chevron-down */
    font-weight: 900;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

/* Rotate or switch icon when expanded */
.accordion-toggle[aria-expanded="true"]::after {
    content: "\f077"; /* fa-chevron-up */
}

.accordion-toggle active {
	border-radius: 0px!important
}

.accordion-content {
    padding: 0.75rem 1rem;
    background: #fff;
	border: 1px solid #1a7245;
}
.park-results-header {
    margin-bottom: 2rem;
}

#reset-filters {
    background-color: #f4f4f4;
    border: 1px solid #999;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 0.5rem;
}