.NestedGrid {
    width: calc(100% + 20px);
    height: 100%;
    display: grid;
    margin-top: -10px;
    margin-left: -10px;
}

.grid {
    display: grid;
    gap: 6px;
    max-width: 2200px;
    width: auto;
    margin: auto;
}

.DynamicGrid {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.DynamicAnchor {
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
    touch-action: none;
    scroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
}

.DynamicAnchor img {
    user-select: none;            
    cursor: default;                
    touch-action: none;            
    -webkit-user-drag: none;         
    -webkit-tap-highlight-color: transparent;
    pointer-events: none;            
}

.DynamicAnchor:hover, .DynamicAnchor:focus {
    background-color: none;
}

.rotate-x {
    transform: rotate(0deg);
}

.rotate-y {
    transform: rotate(90deg);
}