.wordle__preview-block {
    margin-top: 100px;
    margin-right: 56px;
}

/* === Right Regex Panel === */
.wordle__regex-panel {
    flex: 1 1 300px;
    flex-direction: column;
    align-items: center;
    min-width: 300px; /* add this */
    background-color: #f9f9f9;
    border-left: 2px solid #eee;
    padding-left: 1rem;
}

.wordle__regex-panel label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.25rem;
    margin-top:35px;
}

.wordle__regex-display {
    min-height: 1em;
    font-family: monospace;
    white-space: pre;
    width: 30ch;
    height:2em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    position: relative;
    /* Just to visualize height */
    border: 1px solid #f00;
}

.wordle__regex-display::before {
    content: "\00a0"; /* non-breaking space */
    display: block;
    height: 0;
    visibility: hidden;
}

.freeform__regex-input {
    margin-right: 56px;
}

.freeform__regex-label {
    margin-right: 56px;
}
