* {
    box-sizing: border-box;
}

#map{
    height: 100dvh;
    width: 100%;
    image-rendering: pixelated;
}

.sidebar {
    max-width: 100% !important;

    & details {
        position: relative;
        min-width: 30px;
        height: 100dvh;
        
        & summary {
            display: flex;
            justify-content: center;
            gap: 1rem;
            position: absolute;
            height: 100dvh;
            width: 30px;
            background-color: lightgray;
            z-index: 2;
            writing-mode: vertical-rl;
            text-align: center;
            border-left: 2px solid black;
            border-right: 2px solid black;
            list-style: none;
            
            &:focus-visible,
            &:focus {
                outline: unset !important;
            }
            
            &::before,
            &::after {
                content: '◀';
            }
        }
        
        &[open] {
            & summary {
                &:before,
                &:after {
                    transform: rotate( 180deg );
                }
            }
        }
    }
    
    .sidebar-inner {
        height: 100dvh;
        overflow-y: auto;
        margin-left: 30px;
    }
}