﻿.cover {
    height: 115px;
    width: 85px;
    background-position: center;
    background-size: cover;
}

.media-result {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    background-color: rgb(var(--color-foreground-grey));
    cursor: pointer;
}

#results {
    margin: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.media-info {
    padding: 6px;
    min-width: 150px;
}

 .bingo-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 5px;
     margin-top: 20px;
     /*width: 100%;*/
     /*max-width: 600px;*/
 }
 
.bingo-cell {
    background: rgb(var(--color-foreground-grey));
    text-align: center;
    cursor: move;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
    position: relative;
    color: rgb(var(--color-text-bright));
}
.bingo-cell img {
    max-width: 100%;
    max-height: 100px;
}

.bingo-cell.selected {
    background: rgb(var(--color-blue));
}

.bingo-remove {
    position: absolute;
    top: 2px;
    right: 5px;
    font-weight: bold;
    color: red;
    cursor: pointer;
    background: white;
    border: none;
    font-size: 14px;
}

.bingo-cell label {
    display: inline-block;
}

.bingo-cell input[type="number"] {
    width: 60px;
}

.bingo-cell input:not([type="checkbox"]) {
    background: rgb(var(--color-foreground));
}

.controls{
    margin-top: 10px;
}
