#game-container {
    font-family: Ubuntu, sans-serif;
}


#game-container> :not(:first-child) {
    display: none;
}

.bingo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 80vh;
    margin: 75px 0;
    color: black;
}

.bingo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-input {
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    color: black !important;
    font-family: Ubuntu, sans-serif !important;
    background-color: transparent !important;
    border: none !important;
    width: 100%;
}

.header-input:hover {
    background-color: #eee !important;
    border: 1px solid #aaa !important;
}

.subheader-input {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0px;
    padding: 0px !important;
    color: black !important;
    font-family: Ubuntu, sans-serif !important;
    background-color: transparent !important;
    border: none !important;
    width: 100%;
}

.subheader-input:hover {
    background-color: #eee !important;
    border: 1px solid #aaa !important;
}

.bingo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
}

.bingo-cell,
.bingo-cell-new {
    width: 15vh;
    height: 15vh;
    max-width: 15vw;
    max-height: 15vw;
    background-color: whitesmoke;
    border: 1px solid black;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;

    &:hover {
        background-color: lemonchiffon;
        cursor: pointer;
    }
}

.bingo-cell[data-selected="true"] {
    background-color: lightgreen;
    color: white;
    font-weight: bold;
}

.bingo-cell[data-hasImage="1"] {
    font-size: 11px;
    line-height: .9;
}

.bingo-cell[data-hasImage="1"][data-selected="true"] {
    font-weight: normal;
}

.bingo-cell[data-hasImage="1"]:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 250, 205, 0.5);
    pointer-events: none;
}

.bingo-cell[data-hasImage="1"][data-selected="true"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(144, 238, 144, 0.5);
}

#actions-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    & button {
        padding: 10px 20px;
    }
}

#print-many-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media print {
    html * {
        background-color: white;
    }

    footer,
    header,
    .header-full,
    .entry-title,
    .edit-link,
    .edit-link *,
    #actions-container *,
    canvas {
        display: none;
    }

    #game-container> :not(:first-child) {
        display: flex;
    }

    /* .header-input,
    .subheader-input {
        margin: 0;
        padding: 0;
    } */

    .bingo-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        margin: 0;
        page-break-inside: avoid;
    }

    .bingo-card {
        margin: 0;
        padding: 0;
    }

    .bingo-cell[data-selected="true"] {
        background-color: transparent;
        color: black;
        font-weight: normal;
    }

    .bingo-cell *,
    .bingo-cell-new * {
        background-color: transparent;
    }

    .ads-container {
        margin: 0;
        padding: 0 !important;
    }
}