﻿#filters {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

/* Flower container for region icons - ensures circular shape and proper aspect ratio */
.flower-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

    .flower-container img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

@media screen and (max-width: 900px) {
    #filters {
        width: 100%;
        margin-bottom: 30px;
    }

    .mud-container--gutters {
        padding-left: 0;
        padding-right: 0;
    }
}
