/* 🎯 Standardvisning: stjerneform med kolonneoppsett */
#scoreBubble {
    position: fixed;
    top: 1vh;
    right: 10.5vw;
    background: #0038b8;
    color: white;
    padding: 4.5rem 1rem;
    font-size: 1.2rem;
    border: 2px solid white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15vw;
    aspect-ratio: 1 / 1;
    clip-path: url(#davidsstjerne);
    -webkit-clip-path: url(#davidsstjerne);
    overflow: hidden;
}

#poengHjemme,
#poengVerden,
#poengLogikk,
#poengJuridisk {
    display: none !important;
}

.next-round-button {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border-radius: 3px;
}

.next-round-button span:first-child,
.next-round-button span.who-said-score {
    margin-right: 2em;
}

.next-round-button span.next-question {
    font-weight: bold;
}

.next-round-button span:last-child,
.next-round-button span.taktikk-score {
    margin-left: 2em;
}

span[title] {
    cursor: help;
}

span[title]:hover {
    text-decoration: underline dotted;
}

.score-flash {
    animation: flashScore 0.8s ease;
}

@keyframes flashScore {
    0% {
        background-color: rgba(255, 255, 0, 0.3);
    }

    100% {
        background-color: transparent;
    }
}


/* 🎯 Standardvisning: stjerneform med kolonneoppsett */
/* 🧱 Mellomstore skjermer: mindre font, bedre luft */
@media (max-width: 1699px) and (min-width: 1000px) {
    #scoreBubble {
        font-size: 1rem;
        padding: 2.5rem 0.75rem;
    }

    #scoreBubble span {
        display: block;
        text-align: center;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

@media (max-width: 999px) {
    #scoreBubble {
        display: none !important;
    }
}