.current-player-tableau {
    position: absolute;
    width: 25vmin;
    background: var(--grey);
    bottom: 1vh;
    left: 1vh;

    display: flex;
    flex-direction: column;

    padding: 0.75vh;
    gap: 1vmin;

    transform-origin: bottom left;
}

.current-player-tableau.turn {
    box-shadow: 0 0 0 5px var(--highlight-color);
    border-radius: 0.5vmin;
}

.current-player-header {
    background: var(--beige-bg);
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: var(--inset-shadow);
    border-radius: .5vmin;
    padding: 1vmin;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 0.5vmin;
}

.current-player-marker {
    height: 1em;
    aspect-ratio: 1;
    border: 1px solid var(--grey);
    border-radius: 50%;
    box-shadow: var(--raised-shadow);
}

.current-player-token-pool-container {
    position: relative;

    background: var(--beige-bg);
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: var(--inset-shadow);
    border-radius: 5px;
    padding: 1vmin;

    display: flex;
    flex-direction: column;

    gap: 0.5vmin;
}

.current-player-token-pool-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.current-player-resources {
    display: flex;
    flex-direction: row;
    gap: 1vmin;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    --icon-size: 1.4em;
    flex-wrap: wrap;
}

.current-player-resources .icon {
    box-shadow: var(--raised-shadow);
    border-radius: 50%;
}

/* Add spacing after each value (icon + value pairs) */
.current-player-resources > :nth-child(2n) {
    margin-right: 0.8em;
}

.current-player-token-pool {
    display: flex;
    flex-direction: row;
    gap: 0.5vmin;

    justify-content: center;
    align-items: center;
    align-content: center;

    max-width: 100%;
    flex-grow: 1;
    flex-wrap: wrap;
    font-size: var(--fs-xl);
    --worker-size: 1.4em;
}

.current-player-flower-container {
    overflow: hidden;

    background: var(--beige-bg);
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: var(--inset-shadow);
    border-radius: 5px;
    padding: 1vmin;

    display: flex;
    flex-direction: column;
}

.player-flowers {
    border-radius: 5px;
    padding-top: 1vmin;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5vmin;
    --worker-size: 1.4em;
}
