/* === ascii.css === */
.ascii-container {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.5px;
    white-space: pre;
    width: 1200px;
    height: 750px;
    overflow: hidden;
    border: 1px solid var(--border-color, #0a0);
    padding: 10px;
    background-color: var(--bg-color, #001100);
    color: var(--main-color, #0f0);
    font-weight: bold;
    cursor: grab;
    user-select: none;
}
.ascii-container:active {
    cursor: grabbing;
}
.ascii-container:empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color, #0f0);
    opacity: 0.9;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.ascii-container:empty::before {
    content: "SELECT OBJECT TO BEGIN";
}