.intent-area-container {
    display: flex;
    flex-direction: row;
    padding: 1vh 1vw;
    box-sizing: border-box;
    height: 34vh;
}

.button-tray {
    display: flex;
    justify-content: space-evenly;
}

.no-display {
    display: none !important;
}

.vertical {
    writing-mode: vertical-rl;
    width: 0.8rem;
}

.intent-area-primary-container {
    box-sizing: border-box;
    border: 2px solid rgba(20, 20, 20, 0.8);
    border-radius: 4px;
    flex-grow: 1;
    display: flex;
}

.intent-area-input-container,
.intent-area-intent-display-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.intent-area-input-container {
    justify-content: space-between;
}

.intent-area-tab-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.intent-area-tab {
    padding: 1.2vw;
    color: white;
    border-radius: 0px 8px 8px 0px;
    background-color: rgba(60, 60, 60, 0.8);
    height: 12vh;
    text-align: center;
}

.tab-selected {
    background-color: rgba(20, 20, 20, 0.8);
}

.game-result-banner {
    position: fixed;
    width: 80vw;
    height: 60vh;
    top: 20vh;
    left: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    background-color: rgba(20, 20, 20, 0.7);

}

.game-result-text {
    color: white;
    font-size: 3rem;
    text-align: center;
}

.header-bar {
    background-color: rgba(20, 20, 20, 0.8);
    padding: 1vh 2vw;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a:link, a:visited {
    color: rgb(79 179 255);
}