
.custom_filter_container_full {
    width: 100%;
}

#custom_filter_toggleButton {
    cursor: pointer;
    margin-right: 10px;
}

.custom_filter_collapsible {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    width: 100%; /* Make sure it takes full width */
    box-sizing: border-box; /* Include padding in width */
}

.custom_filter_collapsible h3 {
    margin: 10px 0;
}

.custom_filter_collapsible form {
    margin: 10px 0;
}

