canvas {
    touchaction: none;
}

#canvas-container {
    border: solid 1px #e5e5e5;
    border-radius: var(--pretix-border-radius-large);
    width: 100%;
    height: 100%;
    position: absolute;
}

#container {
    position: relative;
    height: 500px;
}

#button-pan {
    position: absolute;
    right: 2.5%;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
}

#seat-info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: white;
    padding: 10px;
    border: solid 1px #e5e5e5;
    border-top-right-radius: var(--pretix-border-radius-base);
}

#legend-box {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: white;
    border: solid 1px #e5e5e5;
    border-bottom-right-radius: var(--pretix-border-radius-base);
    border-top-left-radius: var(--pretix-border-radius-base);
    padding: 8px;
}

.inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price {
    color: grey;
    font-size: 10px;
}

.inline p {
    margin-bottom: 0;
}

.zoom-button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 600px) {
    #container {
        height: 300px;
    }
}

#debug-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    z-index: 9999;
}
