.pwa-leader {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: var(--pwa-leader-height);
    background-color: var(--gray);
    font-weight: bold;
    color: #fff;
    z-index: 2;
}

.pwa-leader button {
    padding: 2px 8px;
    font-weight: bold;
    color: #fff;
    background-color: var(--blue);
    border: none;
    border-radius: 10px;
}

@media screen and (min-width: 480px) {
    .pwa-leader {
        display: none;
    }
}