body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

#graffitiCanvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

.graffitiAimLayer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    pointer-events: none;
    z-index: 8;
}

.graffitiAimCursor {
    position: absolute;
    width: 46px;
    height: 46px;
    margin-left: -23px;
    margin-top: -23px;
    border: 2px solid #111111;
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.9) inset,
        0 0 18px rgba(0, 0, 0, 0.18);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0, rgba(255, 255, 255, 0.08) 32%, transparent 68%);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 120ms ease, transform 120ms ease;
}

.graffitiLeanPaint .graffitiAimCursor {
    background: transparent;
    box-shadow: none;
    transition: none;
}

.graffitiAimCursor.visible {
    opacity: 1;
    transform: scale(1);
}

.graffitiAimCursorLine {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #111111;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%);
}

.graffitiLeanPaint .graffitiAimCursorLine {
    box-shadow: none;
}

.graffitiAimCursorVertical {
    width: 2px;
    height: 60px;
}

.graffitiAimCursorHorizontal {
    width: 60px;
    height: 2px;
}

.graffitiQrCode {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
}

.rcRoomQrCodeLink {
    display: block;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 150px;
    margin-top: 8px;
    margin-right: auto;
    margin-bottom: 8px;
    margin-left: auto;
    border: solid 8px #fff;
    border-radius: 8px;
    color: #fff;
    background-color: #fff;
    box-shadow: 0 0 0 1px #fff;
    text-align: center;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
    text-decoration: none;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.rcTechLabel {
    background-color: #000;
    color: #fff;
    font-family: monospace;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 8px 0;
    padding: 4px;
    letter-spacing: 0.2em;
}

.rcRoomQrCode {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.rcRoomQrCode img,
.rcRoomQrCode canvas {
    display: block;
    width: 150px;
    height: 150px;
}

.rcRoomId {
    background-color: #000;
    color: #fff;
    font-family: monospace;
    font-size: 16px;
    padding: 4px;
    margin: 8px 0 0 0;
    letter-spacing: 0.25em;
}

.graffitiLeanPaint .rcRoomQrCodeLink,
.graffitiLeanPaint .graffitiQrCode {
    box-shadow: none;
}

.graffitiHelp {
    position: absolute;
    bottom: 196px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 14px;
    z-index: 10;
}
