.users-list {
    width: calc(80% - 20px);
    margin: auto;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: var(--events-dates-container-bg-color);
    border-radius: 20px;

    .user {
        width: 250px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        background-color: var(--event-bg-color);
        border-radius: 10px;
        padding: 10px;
        text-align: center;

        a {
            text-decoration: none;
            color: var(--events-a-color);
            font-weight: bold;

            &:hover {
                color: var(--events-a-color-hover);
                text-decoration: underline;
            }
        }

        .user-pic {
            width: 100%;

            img {
                width: 60%;
                aspect-ratio: 1 / 1;
                border-radius: 100%;
                overflow: hidden;
                object-fit: cover;
            }
        }
    }
}

#filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--other-bg-color);
    padding: 0 20px;
    margin: 0;
    width: calc(100% - 40px);
    border-radius: 0;

    div {
        margin: 10px 0;
    }

    button {
        min-height: 3em;
        margin: 0;
    }
}

@media (max-width: 430px) {
    .users-list {

        & .user {
            .user-pic {
                width: 30%;
            }
        }
    }
}