body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 40px;
    background-color: #ffffff;
}

#artboard-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.artboard-instance {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Glyph Styles */
.artboard {
    width: 300px;
    height: 400px;
    border: 1px solid #000000;
    background-color: #fff;
}

.grid-cell {
    fill: #fff;
    stroke: #000000;
    stroke-width: 1;
}

.generated-shape {
    fill: #000;
    stroke: #000;
    stroke-width: 1;
    pointer-events: none;
}

.grid-cell:hover {
    fill: #ff5500;
    cursor: pointer;
}

.selection-preview {
    fill: none;
    stroke: #ff5500;
    stroke-width: 2;
    stroke-linejoin: round;
    pointer-events: none;
}

.baseline {
    stroke: #007bff;
    stroke-width: 4;
}

.x-height-line {
    stroke: #ff5500;
    stroke-width: 4;
}

.reset-button {
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
}