.mm_combination_facet_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 1em;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.mm_combination_facet_container *,
.mm_combination_facet_container *::before,
.mm_combination_facet_container *::after {
    box-sizing: inherit;
}

.mm_combination_facet_fields {
    margin-right: auto;
}

.mm_combination_facet_fields select {
    font-family: inherit;
    font-size: 100%;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.75em 0.5em;
    margin-right: 10px;
    min-width:250px;
}

.mm_combination_facet_action_container {
    padding-left: 1em;
}

.mm_combination_facet_action {
    display: inline-block;
    color: #fff;
    font: inherit;
    line-height: normal;
    text-align: center;
    border: 1px solid #ddd;
    background-color: #ed1d32;
    cursor: pointer;
    overflow: visible;
    user-select: none;
    font-size: 100%;
    border-radius: 5px;
    padding: 0.75em 0.5em;
    margin-right: 10px;
    min-width:100px;
}

.mm_combination_facet_action:active {
    box-shadow: 0 0 1px 1px currentColor;
}

.mm_combination_facet_action.disabled {
    cursor: auto;
    border-color: rgba(118, 118, 118, 0.3);
    opacity: 0.7;
}

.mm_combination_facet_action:not(.disabled):hover {
    background-color: #C9182A;
    outline: 0 none;
}

.mm_combination_facet_action:not(.disabled):focus {
    box-shadow: 0 0 2px 1px currentColor;
    outline: 0 none;
}

/* Media query for mobile devices */
@media only screen and (max-width: 767px) {
    .mm_combination_facet_fields select {
        width: 100%;
        margin-bottom: 10px; /* You can adjust the margin value as needed */
        margin-right: 0; /* Resetting right margin for mobile */
    }
    .mm_combination_facet_action {
        position: static; /* Reset position for default flow on smaller screens */
        width: 100%; /* Make the button take the full width on mobile */
    }
.mm_combination_facet_action_container {
    padding-left: 0px;
    width: 100%;
}
}