#formula-display {
    text-align: center;
    margin: 2rem 0 0.5rem;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Georgia', serif;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#formula-text .target-atom {
    color: #6153cc;
    text-decoration: underline;
    text-underline-offset: 4px;
}

#question-prompt {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #495057;
}

#primary-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

#answer-input {
    width: 80px;
    height: 44px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    border: 2px solid #dee2e6;
    border-radius: 5px;
}

#answer-input:focus {
    outline: none;
    border-color: #6153cc;
}

/* Remove spinner arrows */
#answer-input::-webkit-outer-spin-button,
#answer-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#answer-input {
    -moz-appearance: textfield;
}
