.gallery{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.categorie-selector{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: rgba(255,255,255,0.5);
    border-radius: 5px;
}
.cat-selector-item{

    flex: 0 0 fit-content;
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
}
.cat-selector-item:hover{
    cursor: pointer;
    background-color: rgba(255,255,255,0.5);
    color: black;
}
.cat-selector-item-selected{
    background-color: rgba(255,255,255,0.7);
    color: black;
}
.cat-devider{
    flex: 0 0 4px;
    margin: 2px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 2px;
}

.image-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    overflow-y: auto;
    border-radius: 5px;
}

.gallery-image-tile{
    flex: 1 0 200px;
    height: 200px;
    border: 1px solid white;
    overflow: hidden;
    align-content: center;
    background-color: black;
    border-radius: 5px;

}

.gallery-small-img{
    width: 100%;
}