/* Fullscreen toggle button shown inside the durak and nardy game tables. */

.game-fullscreen-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 30;

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

    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 8px;

    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    color-scheme: only light;
    forced-color-adjust: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.15s ease;
}

.game-fullscreen-toggle[hidden] {
    display: none;
}

.game-fullscreen-toggle:hover,
.game-fullscreen-toggle:focus {
    background-color: rgba(0, 0, 0, 0.7);
    outline: none;
}

.game-fullscreen-toggle svg {
    display: none;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.game-fullscreen-toggle::before,
.game-fullscreen-toggle::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    pointer-events: none;
}

.game-fullscreen-toggle::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 9V4h5M20 9V4h-5M4 15v5h5M20 15v5h-5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.game-fullscreen-toggle::after {
    display: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 4v5H4M15 4v5h5M9 20v-5H4M15 20v-5h5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.game-fullscreen-toggle.is-fullscreen::before {
    display: none;
}

.game-fullscreen-toggle.is-fullscreen::after {
    display: block;
}
