:root {
    font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;

    color-scheme: light dark;
    color: rgba(255, 255, 255, 0.87);
    background-color: #242424;

    overflow: hidden;
}

.rowWrapper {
    display: flex;
    flex-direction: column;
    padding: 20px 0px 20px 20px;
    gap: 20px;
}

.imageContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.imageContainer.selected {
    border: 2px solid white;
}

.collectionSectionWrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 10px;
}

.itemsContainer {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 10px;
}

.titleSet {
    display: flex;
    justify-content: flex-start;
}

.missingImage {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.modalContainer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal {
    width: 70vh;
    background-color: white;
    color: black;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}