.player-panel {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

.stich-line {
    display:flex;
    flex-direction: row;
    justify-content: flex-start;
    max-width: 100vw;
}

.decision-panel {
    min-height: 4em;
    flex: 2 1 0px;
}

.decision-panel .waiting, .decision-panel .hint {
    padding: 0.5ex 2ex;
    border-radius: 0.5ex;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    font-size: 0.9em;
    margin-top: 0.5ex;
}

.decision-action-container {
    display: flex;
    justify-content: space-evenly;
    margin-top: 1.5ex;
}

.player-placeholder {
    flex: 1 1 0px;
}

.viewer-bar {
    position: fixed;
}

.viewer-border { 
    background: transparent;
    pointer-events: none;
    position: fixed;
    top: -20px;
    left: -20px;
    bottom: 0px;
    right: -20px;
    border: solid 40px rgba(255, 0, 0, 0.5);
    border-radius: 60px;
    z-index: 1000;
}

.viewer-text {
    letter-spacing: 1ex;
    text-transform: uppercase;
    position: fixed;
    pointer-events: none;
    background: transparent;
    color: white;
    font-size: 18px;
    top: 1px;
    left: 0;
    right: 0;
    z-index: 1001
}

.initial-cards-container {
    padding: 1em;
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    grid-column-gap: 1ex;
    grid-row-gap: 1ex;
}

#aicards-container {
    display: flex;
    justify-content: space-evenly;
}

.aiprob {
    font-size: 18px;
}