/* Hex Board Editor Specific Styles */
.hex-board-editor-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

#radius-value, #line-width-value, #hexagon-stroke-width-value {
    font-weight: bold;
    color: var(--text-color);
    background: var(--bg-color);
    padding: 0.25rem 0.5rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
}

/* Compact color palette adjustment */
.color-palette.compact .color-option {
    width: 28px;
    height: 28px;
    border-width: 1px;
}

/* Checkbox styling */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

/* Instructions styling */
.instructions {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    border-left: 4px solid var(--genomic-green);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.instructions h3 {
    font-family: 'Roboto Slab', serif;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--genomic-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.instructions ul {
    margin: 0;
    padding-left: 1.5rem;
}

.instructions li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.instructions strong {
    color: var(--wolfpack-red);
}
