.minecraft-shape-calculator-container .result-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.minecraft-shape-calculator-container .result-stat-label {
    color: #6c757d;
}

.minecraft-shape-calculator-container .result-stat-value {
    color: #212529;
    font-weight: 600;
}

.minecraft-shape-calculator-container .preview-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.minecraft-shape-calculator-container .preview-svg-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: #f8f9fa;
}

.minecraft-shape-calculator-container .preview-svg-container.is-zoomed {
    cursor: grab;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.minecraft-shape-calculator-container .preview-svg-container.is-zoomed:active {
    cursor: grabbing;
}

.minecraft-shape-calculator-container .shape-preview {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: center center;
}

.minecraft-shape-calculator-container .zoom-value {
    min-width: 2.75rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.minecraft-shape-calculator-container .cell-tooltip {
    position: fixed;
    z-index: 1050;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-variant-numeric: tabular-nums;
    color: #fff;
    background-color: rgba(33, 37, 41, 0.9);
    border-radius: 0.25rem;
    pointer-events: none;
    white-space: nowrap;
}
