

#display {
    display: flex;
    flex-direction: row;
    width: 95%;
    margin: auto;
}

#display .column {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    column-gap: 10px;
    width: 100%;
}

#display img {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.column-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pair {
    display: flex;
    gap: 10px;
}

.row {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.row.fade-in {
    opacity: 1;
    transform: translateY(0);
}

#loading-spinner {
    margin: auto;
    width: max-content;
    margin-bottom: 20px;
    margin-top: 50px;
}
@keyframes loading-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

@media (max-width: 1640px) {
    #display img {
    }
}

@media (max-width: 1400px) {
    #display img {
        padding: 0 5px;
        margin-bottom: 10px;
        box-sizing: border-box;
        border-radius: 10px;
    }
}

@media (max-width: 1150px) {
    #display img {
    }
}

@media (max-width: 750px) {
    #display img {
        padding: 0 3px;
        margin-bottom: 6px;
        box-sizing: border-box;
        border-radius: 6px;
    }
}

@media (max-width: 500px) {
    #display img {
    }

    .pair {
        gap: 5px;
        margin-bottom: 5px;
    }

    .row {
        margin-bottom: 0px !important;
    }

    .column-row {
        gap: 0px;
    }
}