@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

* {
    touch-action: manipulation;
}

.btn-outline-secondary{
    --bs-btn-hover-color: black !important;
    --bs-btn-hover-bg: white !important;
}

.mainContent{
    margin: auto;
    max-width: 1000px;
    padding: 1.75rem;
}

.extrasmall span{
    color: #0d6efd !important;
}

/* Klasse für angekreuztes Feld */
.angekreuzt {
    color: white;               /* Textfarbe */
    font-weight: bold;
    font-size: 2rem;          /* optional: große Anzeige */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Optional: Großes X über das ganze Feld */
.angekreuzt::before {
    content: "✖";             /* das Kreuz */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* zentrieren */
    font-size: 3rem;           /* Größe des X */
    color: red;
    pointer-events: none;      /* Klicks gehen durch */
    opacity: 0.6;
}



.durchgestrichen {
    color: white;
    font-weight: bold;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.durchgestrichen::before {
    content: "–";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: red;
    pointer-events: none;
    opacity: 0.6;
}


.feld {
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.feld::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: red;
    pointer-events: none;
    opacity: 0.6;
}




#winScreen{
    /*width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dedede;
    z-index: 100;
    text-align: center;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;*/

    display: flex; /* versteckt standardmäßig */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.92); /* halbtransparent schwarz */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
}

#qr-container {
    max-width: 90vmin;
    max-height: 90vmin;
}

#qr-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Schließen-Kreuz */
#close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    user-select: none;
}


#confetti-canvas {
    z-index: 8000 !important;
}

.btn{
    height: 55px !important;
    line-height: 55px !important;
    --bs-btn-padding-x: unset !important;
    font-size: 18px !important;
}

#inputNumbers .btn{
    line-height: unset !important;
}