/* Height Input Styling */
.height-input-wrapper {
    display: flex;
    /* Defaults to flex when display is not 'none' */
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 4px 12px;
    background-color: transparent;
}

.height-label {
    margin: 0;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.height-input {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 5px 10px;
    max-width: 80px;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.height-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 96, 128, 0.1);
    outline: none;
}

/* Mobile compact height input */
@media (max-width: 480px) {
    .height-input-wrapper {
        gap: 6px;
        padding: 2px 8px;
    }

    .height-label {
        font-size: 0.75rem;
    }

    .height-input {
        padding: 3px 6px;
        max-width: 60px;
        font-size: 0.8rem;
    }
}